Reputation: 1
I have an Excel spreadsheet like this:
C1 - 100100
G1 - 01.01.2015
H1 - 15.05.2015
From A5:
ID animal sales
123123 bear 100
213213 zebra 200
321321 lion 150
and I need to move data into a SQL Server database using SSIS. The resulting table should look like
ID Animal Sales Date1 Date2 Region
123123 bear 100 01.01.2015 15.05.2015 100100
213213 zebra 200 01.01.2015 15.05.2015 100100
321321 lion 150 01.01.2015 15.05.2015 100100
Any help would be greatly appreciated.
Upvotes: 0
Views: 47
Reputation: 786
The way I have handled this problem in the past is to:
When doing this I had problems with the metadata for the column names for the C1, G1, and H1 sources, so it took some fiddling to finally get it to work.
Hope this helps.
Upvotes: 1