Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> {9i New Features: external tables}
Welcome to this week's installment of 9i the continuing saga :)
External Tables.
So just what is an external table? An external table is a complement to
SQL*LOADER.
It allows you to access data in some external source as if it were a
table in the database.
Thats the good part, now the bad part(aka restrictions):
So what do we need to do to make this all work:
Here is the external data:
[jtesta_at_laptop-jt 9i]$ cat /tmp/emp.dat
123456Joe
000001Rachel
000020Susan
000030Guy
000222Wild man
Here is the code to be able to access the external data via the only
access method supported
right now(oracle_loader).
select * from emp_load;
insert into emp_test select * from emp_load;
select * from emp_test;
commit;
What you will see in running that previous set of code, is that the data
will pulled from
the flat file in the /tmp directory and will be displayed to the screen.
Check out the 9i utilities manual for further reading.
As always sent hate mail to /dev/null, all good stuff to 9i_at_oracle-dba.com
Joe
--
Joe Testa, Oracle DBA
Want to have a good time with a bunch of geeks? Check out:
http://www.geekcruises.com/standard_interface/future_cruises.html
I'm presenting, when registering drop my name :)
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Joe Testa
INET: teci_at_the-testas.net
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Nov 28 2001 - 18:54:00 CST
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |