I have a simple package which transfers data from normalized to denormalized db.
It runs fine on Visual Studio 2015 against remote dev server which is SQL Server 2012.
But when I upload it to dev server and run it using Execute Package Utility I get this error:
Text was truncated or one or more characters had no match in the target code page
Things checked:
Checked the error column, it's the same type, length (
varchar 250
) & collate in source & destination databases.Installed SQL Server 2012 SP3 on dev server
Googling this error I see it's typical to flat file import but I'm using OLE DB source & destination
Package was upgraded from Visual Studio 2008 and ssis project is set to run against SQL Server 2012
Redirecting error / truncate rows to a flat file yields nothing
Inputs & outputs checked with advanced editor, all are
[DT_STR] 250
& same code page
Any ideas? Thanks.