ManjulaMadhu
Programmer
Is there any way to import a csv file into the Oracle 9i database without DBA studio or SQL Loader ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE AOL_EURO_EXT ( Idd number,
text char(20)
)
ORGANIZATION EXTERNAL ( TYPE ORACLE_LOADER
DEFAULT DIRECTORY csv_dir
ACCESS PARAMETERS( RECORD DELIMITED BY NEWLINE
FIELDS TERMINATED BY ','
BADFILE 'bad.txt'
LOGFILE 'log.txt'
MISSING FIELD ARE NULL)
LOCATION ('AOLEURO1.CSV')
REJECT LIMIT UNLIMITED;
Insert into customer_payment( customeridd, payday, amount, currency, BankPayIdd )
select Customeridd, day, amount_curr, currency, BankRef from Upload_BankPayFile;