I had this error and I don’t know how to fix it
Cannot resolve the collation conflict between “Arabic_CI_AS” and
“SQL_Latin1_General_CP1_CI_AS” in the equal to operation.
note: I already change the collation from the database option –> Collation
I change it from “Arabic_CI_AS” to “SQL_Latin1_General_CP1_CI_AS”
and I am still getting the same error !!
Any suggestion to solve this ?
The database collation applies only when you create NEW objects without specifying the collation.
When you change it from “Arabic_CI_AS” to “SQL_Latin1_General_CP1_CI_AS”, all the textual columns in the database are still collated
Arabic_CI_AS. You can check this usingA patch to this problem is to put
COLLATE DATABASE_DEFAULTagainst the comparison, e.g.or
etc
There is a script on this site that attempts to change the collation across an entire database, but