I have an excel file as shown below
I need to load these data into a table with below mentioned format
How to achieve this in SSIS.I mean all the column header would insert as row element as shown below.Is it using pivot ?
I have an excel file as shown below
I need to load these data into a table with below mentioned format
How to achieve this in SSIS.I mean all the column header would insert as row element as shown below.Is it using pivot ?
I believe you actually need to UNPIVOT
the data; it would look like this:
Input Column | Destination Column | Pivot Key Value
Period1 | Value | Period1
Period2 | Value | Period2
Period3 | Value | Period3
Period4 | Value | Period4
With the Pivot Key Value Column Name: Period