Executed as user: NT AUTHORITY\SYSTEM. Cannot resolve the collation conflict between "Chinese_PRC_CI_AS" and "Chinese_*_Stroke_CI_AS" in the equal to operation. [SQLSTATE 42000] (Error 468). The step failed.
解决方式:
on a.[Column1]= b.[Column2]
à
on a.[Column1] COLLATE Chinese_PRC_CI_AS= b.[Column2]
或者下面也可以
on a.[Column1] Collate Database_Default = b.[Column2]