I need to load data from excel spreadsheet into oracle8.05 database daily. I need a method to run this loading automatically .Have anyone come across a tool/method ,pls advise.
Could someone outline the basic steps I should follow to do the following.
1) I need to get 128 records out of one table in Oracle.
2) I need to bring in the 128 records into another database.
3) When bringing in the 128 records there are 18 records that are duplicate that I would like to kick out.
Do I use SQL Loader to get the records in and out of oracel using a CSV file? and then let index contraints reject the duplicate records? or should I just edit the csv file?
SQL*Loader does not take data out of an Oracle database (that would require SQL*Unloader, which doesn't exist).
To get the records out of the database, you could spool the output to a file or use utl_file to write it to a file. And since this would require a query, write your query so it only outputs the unique data.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.