I have a ssis package which gets data from sql and dumps to CSV file. There are half a million of rows and almost 100 columns and when i dump the data to Flat file destination, some of the column values gets concatenated to the next column value as it has same text deliminator as flat file connection.
For eg if the source data is like
ID NAME HEIGHT ADDRESS AGE
01 DEB 5.6" xyz"9 29
Destination is coming like
ID NAME HEIGHT ADDRESS AGE
01 DEB 5.6",xyz"9 29
The age comes to address column in csv file.
How to avoid it as i am not sure with how many records the issue might be?
- Text del is "
- Column del is ,