vote up 0 vote down star

I have an Excel file that I need to import into a (new) Oracle table. What is the best way to do this?

flag

6 Answers

vote up 0 vote down

Try Excel-to-Oracle, easy-to-use conversion tool with wizard-style interface and command line support:

http://www.convert-in.com/xls2ora.htm

link|flag
vote up 1 vote down

If you need to perform any validation or cross-referencing on the data, I suggest using an entity relationship manager like Talend, etc. You can write scripts to do things like this, but a tool can make this a bit less painful.

link|flag
vote up 1 vote down

I'm pretty sure it's possible to set up an Excel file as an ODBC source, but don't ask me how to do that.

I generally just save the spreadsheet as CSV and import it using Oracle APEX's CSV import wizard.

link|flag
vote up 3 vote down

The simplest (technically) way is to export the contents as a CSV and use SQL*Loader to import it into the table. This link goes to the documentation for SQL*Loader, which will explain how to write a SQL*Loader control file.

If you need to automate the export to CSV this can be done through OLE automation or VBA code within the spreadsheet. You could also use VBA (shell) to execute the SQL*Loader command if you want to provide a facility for the end-user to initiate the load.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.