SSIS package failed collation issue.

Copper Contributor

Hi Experts,

 

SSIS package failed collation issue. (Cannot resolve the collation conflict between latin1_general_cs_ks_ws and latin1_general_ci_ks_ws . unable to find which table and coulmn causing this issue,. Need Help

 

San29071979_0-1671117691694.png

 

2 Replies
You'll get this problem when your user databases have a different collation from the master database. When you make a temporary table it uses the collation from master/tempdb (which should always be the same). Then when you inner join to a table in your user database you'll get a collation error.
To fix this.
short term #1 always put collation statements on your temporary tables to match tables in your user database.
long term #2 ensure that your master/tempdb collations always match your user databases.

@Becky_York  yes able to resolve now. thanks much