Is there any way to ignore collation settings when you are running a query over 2 databases??
i.e.
select * from PTS_SRV.PTS_staging.dbo.securityrg
where FirstExternalSecurityCode in
(
select assetSEDOLCode from ODSSRV.ODS.dbo.asset
)
Produces the error:
Server: Msg 446, Level 16, State 9, Line 1
Cannot resolve collation conflict for equal to operation.
i.e.
select * from PTS_SRV.PTS_staging.dbo.securityrg
where FirstExternalSecurityCode in
(
select assetSEDOLCode from ODSSRV.ODS.dbo.asset
)
Produces the error:
Server: Msg 446, Level 16, State 9, Line 1
Cannot resolve collation conflict for equal to operation.