Import Excel file into Oracle

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

+3
source share
5 answers

The simplest (technically) way is to export the content as a CSV and use SQL * Loader to import it into the table. This link refers to the documentation for SQL * Loader, which explains how to write a SQL * loader management file.

CSV, OLE VBA . VBA (shell) SQL * Loader, .

+4

, Excel ODBC, , .

CSV Oracle APEX CSV.

+1

If you need to perform any checks or cross-references to data, I suggest using an entity relationship manager such as Talend, etc. You can write scripts to do such things, but the tool can make it a little less painful.

+1
source

Source: https://habr.com/ru/post/1711917/


All Articles