what is External tables? explain with examples

Answer Posted / jayaprakash gutti

External table is a complement to SQl* Loader.
External table is more faster compared to SQL loader when
there is thousands of records in source data file.

When we create External table, a link is established between
external table and source data file (which is located in the
file system/Oracle Server).

whenever we query external table like:

select * from external_table;

it fetches data from the file and displayed.
also, external tables are read-only.
you can't perform DML operations.

we can insert the data in the external table to any of the
data base table we want.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how mysql optimizes distinct? : Sql dba

637


Can a foreign key be null?

695


explain the difference between myisam static and myisam dynamic. : Sql dba

606


Why join is faster than subquery?

695


how do you know the version of your mysql server? : Sql dba

588






Is primary key always clustered index?

638


How do you modify a trigger?

615


Are there any features that are decommissioned in 11g that are not present in 11g?

1694


what are the different index configurations a table can have? : Sql dba

656


what is unique key constraint? : Sql dba

656


What is compute?

656


What is mutating error?

600


How do you use collections in procedure to return the resultset?

1881


What is nvarchar max in sql?

671


How does left join work in sql?

605