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
how mysql optimizes distinct? : Sql dba
Can a foreign key be null?
explain the difference between myisam static and myisam dynamic. : Sql dba
Why join is faster than subquery?
how do you know the version of your mysql server? : Sql dba
Is primary key always clustered index?
How do you modify a trigger?
Are there any features that are decommissioned in 11g that are not present in 11g?
what are the different index configurations a table can have? : Sql dba
what is unique key constraint? : Sql dba
What is compute?
What is mutating error?
How do you use collections in procedure to return the resultset?
What is nvarchar max in sql?
How does left join work in sql?