Column validation error for cannot be processed because more then one code issue

Jinal Contractor 121 Reputation points
2022-02-01T00:20:02.757+00:00

I'm trying to download the FILES from FTP server and import into SQL Database>Table connecting via Flat File Source > OLE DB Destination and getting multiple columns error.

Error:- The Column "Column Name" cannot be processed because more than one code page (65001 and 1252) are specified for it.

Attached is the screenshot. 170022-screenshot-2022-01-31-181611.png

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,702 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZoeHui-MSFT 41,491 Reputation points
    2022-02-01T01:28:14.47+00:00

    Hi @Jinal Contractor

    Error:- The Column "Column Name" cannot be processed because more than one code page (65001 and 1252) are specified for it.

    From the error message, you are trying to map a column from a value with Code Page 65001 (UTF-8) to a value with 1252 (ANSI - Latin I).

    You may add Data Conversion component or Derived Column Transformation between your source component and destination.

    Or you may go to OLE DB Destination- click "Show Advanced Editor" in the right bottom corner- open tab: Component Properties- set DefaultCodePage = 65001 (or 1252)- set AlwaysUseDefaultCodePage = true.

    Details you may refer to ssis-code-page-goes-back-to-65001.

    Regards,

    Zoe


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.