I have installed SQL Developer in my system, but how can i utilize the GUI. I am new to this and i want to import datas from Excel to Oracle database using SQL Developer
Thanks in advance
At what point did you get stuck?
A fast track:
- Create a connection to the database in SQL Developer
- Create a table as a destination for the xls data
- save excel data as csv
- right click on the table from step 2
- select 'import data'
- select csv file
- use the wizzard
and bob is your uncle
Folowing methed creates the table for you
- Create a connection to the database in SQL Developer
- right click on tables folder
- Choose Import data
- select xls
- use the wizzard (provide table name, row limit, select columns, datatype per column)
- Finish
A recent version* of SQL*Developer is able to read Excel workbooks.
Jeff Smith has written very detailed tutorial How to Import from Excel to Oracle with SQL Developer.
* a version 3.2 at the moment of writing
精彩评论