I have a file with 100 rows and 20 columns, the first 2 rows are text and 98 others are numbers. There are no headers - I need to combine row1 and row2 to have the header.
I want to split row 1 to one output and row 2 to another output then combine col1 for row1 and row2, combine col2 for row1 and row2, combine col3 for row1 and row2 etc for all 20 columns to create new headers. After combining, I will use union all to write to a new output file that will now have 99 rows: row 1 is text with the new headers and the remaining 99 are numbers.
Does SSIS allow me to do that? I know it can do conditional split for column values but is there a way to split values based on the row or row number? can conditional split work with rows?
thx


