Excel → CSV → Oracle
Save the Excel spreadsheet as a CSV file type (comma separated values).
Transfer the CSV file to the Oracle server.
Create an Oracle table using the SQL statement CREATE TABLEto determine the lengths and types of columns in the table.
Use sqlload to load the CSV file into the Oracle table. Create the sqlload control file as follows:
load data
infile theFile.csv
replace
into table theTable
fields terminated by ','
(x,y,z)
sqlload CSV , CSV . Unix:
% sqlload userid=username/password control=<filename.ctl> log=<filename>.log
, QuickLoad