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
discuss about myisam index statistics collection. : Sql dba
What are character functions?
How can we optimize a sql query?
What is trigger with example?
What is cross join sql?
what is recursive stored procedure? : Sql dba
What are analytic functions in sql?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
How can I get the number of records affected by a stored procedure?
Is oracle sql free?
What sql database should I use?
Is sql an operating system?
What is cursor status?
What are the different types of tables in sql?
What is the difference between subquery and correlated query?