I am trying to pivot the table to sql server 2008 R2.
source excel file is like this.
date 1/1/2000 2/1/2000
money 5 7
name Julie tom
I want to make the first column on the top row as a column names.
date money name
1/1/2000 5 Julie
2/1/2000 7 tom
can it be done in ssis? using pivot or unpivot? I notice that there is no column name in source. is it possible with ssis or t sql?