I am working on a view, wherein I am using an inner join on two tables which are from two different servers. We are using linked server. When running the query I am getting this message:
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Arabic_CI_AS" in the equal to operation.
I don't know much about collation. Searching through internet I find solutions to use COLLATE
, but the concept of COLLATE
is not clear to me. Will it change anything for any of the databases? I am looking for a solution without changing anything for the databases.
Any good learning material for these concepts is welcome.