When i clicked right on my DB , this error appears "SQL Cannot resolve the collation conflict between "Arabic_100_CI_AI" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation. Could not use view or function 'dbo.sysdac_instances' because of binding error"
I don't know to change the collation
UPDATE I tried this code to change default collation of DB But it gives an error
Update2
Please help me to solve this issue.
Thanks in advance.
3条答案
按热度按时间guz6ccqo1#
Your two tables are using different collation. You can tell your query to use a specific collation like this:
Or if you prefer to use the database default collation:
Updated
I think you need to set the database to single user mode
oknrviil2#
Try below syntax :
fwzugrvs3#
My issue was resolved this way, as two queries from different databases were joining.