Import multiple Excel files into SQL Server 2008 R2 using SSIS Packages?

18,946

Solution 1

since you have only 2 excel files and only two tables I don't see why use a foreach loop. Just follow this link and do it directly

If you need to insert from both excel files to both databases you can use a multicast component to create a copy of a dataset

Solution 2

Use Foreach Loop Container --> Foreach File Enumerator. Then put your Data Flow in Foreach Loop Container. Table structure and sheet name have to be equal in every Excel file.

Here is nice tutorial: http://bi-polar23.blogspot.com/2007/08/loading-multiple-excel-files-with-ssis.html

Share:
18,946
Guru
Author by

Guru

Updated on July 02, 2022

Comments

  • Guru
    Guru almost 2 years

    I have to insert data into two tables from two different excel sheets using SSIS packges.

    So, please some one tell me How to import multiple Excel files into SQL Server 2008 R2 using SSIS Packages?