goofyui
goofyui

Reputation: 3492

How to import multiple excel sheets in an excel source to SQL using SSIS?

How to import multiple excel sheets in an excel source to SQL using SSIS?

I will have to import multiple excel files and each file has 8 sheets. Number of sheets on all the input files remains same.

How to set this setting in the Excel Source ?

Upvotes: 0

Views: 4480

Answers (1)

Hadi
Hadi

Reputation: 37313

If you are looking to import all sheets in an Excel workbook into SQL you can refer to the following links:

But you must notice that if the excel worksheets have different structures, then you should create multiple excel source, also if loop through many excel files you should create a foreach loop container to loop over files and inside it you should create another foreach loop container to loop over worksheets.

Upvotes: 1

Related Questions