I’m running one SSIS package to import data from flat file send from SAP to MSSQL 2005 Server.
Due the UTF-8 format of flat file SSIS is reading and inserting the following respectively.
Original Inserted by SSIS
'ü' 'ü'
'ß' 'ß'
'ä' 'ä'
'ö' 'ö'
I tried Unicode conversion which also dint work.
The collation of my MSSQL 2005 database is SQL_Latin1_General_CP1_CI_AS.
Please help me resolve this issue.