Reputation: 7980
I created an SSIS package which makes queries my DB and exports the Result to a CSV File, in order to import the data into the DB of another system B (which I don't have access to). According to the administration of system B the CSV file structure is correct but for some reason the import fails. He also told me, that they use ISO-8859-1 (latin 1)
as charset, while Flat File Connection at the SSIS package is set to Unicode
. When I try to change the Code page Attribute to 1252 (ANSI - Latin 1)
it fails, since some of my columns are of data type Unicode text stream [DT_NTEXT]
. How can I convert those values so I can change the charset to Latin 1?
Upvotes: 2
Views: 3718
Reputation: 7980
Although my question doesn't seem to be very popular, I'm going to leave the link to the solution here, in case someone else has the same problem some day:
Upvotes: 2