I am new to SSIS and have this below flat file and need to load into Orders table in MS SQL Server,
ID,Order1,Package1,Order2,Package2
1,O1,P1,O2,P2
2,O3,P3,O4,P4
3,O5,P5,O6,P6
I need to load above flat file values into Orders table just like bleow using SSIS,
ID Order Package
1 O1 P1
2 O2 P2
3 O3 P3
4 O4 P4
5 O5 P5
6 O6 P6
and I am trying to map all (O1 to O6 and P1 to P6) columns to Order and Package as show below,but i could not.
any solution for this.