Row delimiter not recognized -
05-26-2006
, 11:06 AM
I have a flat file that is a bit complicated. Depending on the first column
the row is 152 columns wide or 142. The file is delimited by commas and the
row is delimited {LF}. The shorter rows are not paying attention to the row
delimiter and concatenating the next row at the end of the shorter row. DTS
can handle this file just fine. Here is a easy example that SSIS can not
handle correctly. If you create this in a txt file using {CR}{LF} as the row
delimiter you will imediately see the problem.
1,2,3,4,5,6
1,2,3
1,2,3,4,5,6
1,2,3,4,5,6
1,2,3
1,2,3,4,5,6 |