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
What is sql indexing?
Is a secondary key the same as a foreign key?
How do you exit in sql?
Why is %isopen always false for an implicit cursor?
what is the difference between a having clause and a where clause? : Sql dba
how to fetch alternate records from a table? : Sql dba
What is delete command in sql?
Define a temp table?
Can there be more than one function with a similar name in a pl/sql block?
How do I access sql anywhere database?
how to increment dates by 1 in mysql? : Sql dba
what are the join types in tsql? : Transact sql
Can two tables have same primary key?
How many triggers can be applied to a table?
List the different type of joins?