what is External tables? explain with examples
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / karkuvelrajan muthusamy
External tables can be used to fetch data from a physical
data file present in the OS path of the database server.. It
is similar to SQL*Loader where oracle reads data from a
datafile and loads into oracle tables.. An external table is
very similar.. Whenever we create an eternal table, oracle
doesnot load data from file instead a table that referes to
the file only is created.. A sample syntax could be as
following:
create table ext_tbl
(e_name varchar2(50),
e_sal number)
ORGANIZATION EXTERNAL(
TYPE ORACLE_LOADER
-- Default->ORACLE_LOADER, Oracle_datapump can also be used
DEFAULT DIRECTORY ext_dir
-- An oracle directory has to be created with
-- name ext_dir
ACCESS PARAMETERS
(
FIELDS TERMINATED BY ','
RECORDS DELIMITED BY NEWLINE
MISSING FIELD VALUES ARE NULL
(e_name, e_sal)
)
LOCATION('file1.txt')
)
The file1.txt should be in the following format:
Kumar,20000
Raj,10000
Patel,34000
Hope this helps.
Regards,
Karkuvelrajan M
| Is This Answer Correct ? | 2 Yes | 2 No |
What is hibernate and its relation to sql?
What is pl sql block structure?
What is procedure function?
What is normalization ?
9 Answers BirlaSoft, CTS, HCL,
Does a join table need a primary key?
What will happen after commit statement ?
How can you create an empty table from an existing table?
how to load data with out header and footer records in a database using sql*loader? pls tell me the answer urgently
How does sql*loader handles newline characters in a record? : aql loader
What do you mean by dbms? What are its different types?
How do you rank data in sql?
1> how are u debugging in plsql ? 2> how to connect oracle database from unix. is there ne way other than using sqlplus ?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)