I have source data as follows:
ID Data
1 text text text
2 text text text
In SSIS, I need to make a transformation which will result in
ID Data
1 text
1 text
1 text
2 text
2 text
2 text
The destination file needs to be a flat file. Is it possible to do this transformation? How? I tried a Derived column with ID + REPLACE((DT_WSTR,4000)Data," ","\n")
, but that seems to be an incorrect approach.