Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

sql loader ( how to load data from xlsx file to oracle table) -[xlsx file having multiple sheets]?

Deepak patraDec 21 2017 — edited Dec 28 2017

Hello everyone,

I am facing issue to load data from xlsx file to the database table.

Is there any approch to load data from xlsx to table?

please note : I have spreadsheet (xlsx file) which has multiple tabs like (sheet1, sheet2 , sheet3).

here is the code which is being used :-

----------------------------------------------------------------------

OPTIONS (SKIP=1)

LOAD DATA

--INFILE ${FILENAME}

--${LOADTYPE}

INFILE 'E:\queries\sqlldr\csv\Attribute Changes.csv'

INSERT

INTO TABLE CM_TABLE_REF_TEST

FIELDS TERMINATED BY " "

TRAILING NULLCOLS

(

Table_Name,

Attribute_Name,

Business_description

)

-----------------------------------------------------------------------

this is the excel file which need to be load into table.

pastedImage_1.png

Any help would be appriciable.

thank you

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 25 2018
Added on Dec 21 2017
4 comments
4,359 views