I have several Excel files (7 to be exact) which represent slices of a composite Excel file so when I put all of them side-by-side, the original Excel is fully reconstructed. This means that except for the first column in each file which stores the key, the structure of each file is different.
How can I use SSIS to loop through these files and load each into its own table?
After the loop, I will probably execute a SQL Task to put all the slices back into a composite table.
Thank you.