I had a DTS package that was very simple and just created a text output file from a table. I converted the DTS package to SSIS using the import package wizzard. It all works except...
DTS version is puts out a row like this...
"0","0","DESC AS AUDITOR'S PARCEL ""A"" IN SURVEY"
The SSIS version is this...
"0","0","DESC AS AUDITOR'S PARCEL "A" IN SURVEY"
As you see the double quotes around A were doubled up in DTS but not SSIS. Is there a property that I can change that will make SSIS export the data to the flat file with the extra quotes? This is causing a problem for a downstream user and will need to continue to use the DTS package until I can resolve this problem.
Thanks