Hello!
We have little problem with simple SSIS package
We read rows from flat file source (.csv) format
string[DT_STR] OutputColumnWidth 80
and then make derived column
(DT_STR,40,1252)[Column 21]
and write rows to OLE DB Destination
In Csv we have rows like
....XXX/XXC/Сxxx Sxx;XXX/XXC/Cxx Sxxx Dxxxxx;XXX/XXC/Сxxxxx Sxxxx Dxxxxxxx
For some reason we get truncation error from derived column for this particular row but length definitions are ok.
I have found out that for some reason /C or C/ is the source of problems. If I for example replace
/C => /B everything works fine.
for example
....XXX/XXB/Bxxx Sxx;XXX/XXB/Bxx Sxxx Dxxxxx;XXX/XXB/Bxxxxx Sxxxx Dxxxxxxx
Any Ideas what might be special meaning of /C or C/ in string column?
Regards
Cazzy