Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Methods Of Uploading Data to Oracle Tables

Status
Not open for further replies.

TheMus

Technical User
Aug 23, 2000
28
0
0
US
I'm using sqlldr80 to import records into an Oracle table. Is there another method of getting the records into the table?

Thanks in advance,

Rus
 
You could use one of the Oracle Precompilers or the PL/SQL file I/O built-in package UTL_FILE to read the file and then perform inserts into the appropriate table. SQL*Loader is probably easiest unless you want to do some pretty complicated data cleansing etc.
 
If you are looking for spped will inserting I would use Pro*C.

Also use temporary tables to store the data and have a second job load it onto the relevant tables on the database. Or if you have no manipluation to do just insert it in your Pro*C job


hope this helps....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top