CANNOT RESOLVE THE COLLATION CONFLICT
Msg 468, Level 16, State 9, Line 2
Cannot
resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS"
and "Latin1_General_CI_AS" in the equal to operation.
where a.abc = b.abc COLLATE Latin1_General_CI_AS
Per vedere la collation
SET NOCOUNT ON
GO
SELECT SERVERPROPERTY('collation') SQLServerCollation
,DATABASEPROPERTYEX('master', 'Collation') AS MasterDBCollation
GO