I'm using a Flat File Connection to read a file. This file contains UTF-8 data, but the file does not have a Byte Order Mark. (I checked this with notepad++)
The CodePage from the flat file connection is set to '65001' and UniCode is set to 'False'.
While processing this file and copying the data to the database, some characters are wrong.
What is the best/easiest solution ?
The database table was defined as varchar instead of nvarchar, this solved my problem.