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 do you modify a column in sql?

724


Can cursors be part of a trigger body?

1347


What is memory optimized table?

761


What is varchar sql?

807


Can delete statement be rollbacked?

723






What is union?

815


What is cursor and its types?

714


How do you pronounce sql?

723


What are the uses of sysdate and user keywords?

841


explain primary keys and auto increment fields in mysql : sql dba

706


Which sorts rows in sql?

768


Which join is default?

708


What are the methods of filing?

673


What is full join in sql?

711


what is the use of set statement in tsql? : Transact sql

735