Link to home
Start Free TrialLog in
Avatar of Jordan_WM
Jordan_WM

asked on

Inetgration Services - File System - Code Page Error on SSIS

Hello,

I have created a SSIS file system import job, I have set the AlwaysUseDefaultCodePage  to true to ignore this error but I keep getting the following error on all the columns.

The column "PCD" cannot be processed because more than one code page (65001 and 1252) are specified for it.

Not sure what settings I am missing.

LJ
Avatar of Surendra Nath
Surendra Nath
Flag of India image

check the code page for the flat file source, if it is 65001 or not, then you have to change to ansi 1252
ASKER CERTIFIED SOLUTION
Avatar of jogos
jogos
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi,

I found that I had to import into nvarchar columns instead of varchar columns to get around the code page thing.

Regards
  David
If you set on your input the flexible 'AlwaysUseDefaultCodePage ' you must have on the output also the more flexible 'nvarchar'.  
That is what my previous post was about. You changed your input-settings in attempt to get rid of probes ... but it must be balanced on the other side.

Having varchar as output was not mentioned so I only could get your attention on the (tempory)  destination also.