I try to join two tables from different SQL servers. I made a LikndedServer, it takes the data from that server, but when I do 'inner join
' with a table from another Db is shows this error : Cannot resolve the collation conflict between "Latin1_General_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation
The query is like below:
select * from [DB1].[dbo].[Employee] as P1
inner join [LinkedWebServer].[DB2].[dbo].[View_HyrjeDalje_Punetoret] as P2 on
P1.[Personal_No] = P2.[vcNumriPersonal]
Thank You!