Error/Fix: Cannot resolve the collation conflict between “Latin1_General_CI_AS” and “SQL_Latin1_General_CP1_CI_AS” in the equal to operation
Recently I was working on a SQL query in my inventory database, and was greeted with below error message:-
Cannot resolve the collation conflict between “Latin1_General_CI_AS” and “SQL_Latin1_General_CP1_CI_AS” in the equal to operation.
Resolution:
To resolve the issue, first let’s we have to find exact collation of the columns involved. Below is the query for same.
1 2 3 4 5 6 |
SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, COLLATION_NAME FROM INFORMATION_SCHEMA.COLUMNS AS c WHERE c.TABLE_SCHEMA = 'dbo' AND ( c.TABLE_NAME = 'Instance' AND c.COLUMN_NAME in ('Name') ) OR ( c.TABLE_NAME = 'InstanceList' AND c.COLUMN_NAME in ('ServerName') ) GO |
As we can see in above screenshot, Collation for column dbo.InstanceList.ServerName is Latin1_General_CI_AS compared to SQL_Latin1_General_CP1_CI_AS of column dbo.Instance.Name.
In order to make the query work, we need to use hint COLLATE <Collation of Other Comparing Column> in inner query. Below is the final query as shown in screenshot.
Friends, please feel free to correct me by comments. If you like the article, do Like & Share. Happy Coding 🙂
Related
Related Posts
-
Error/Fix: There is insufficient system memory in resource pool ‘default’ to run this query.
2 Comments | Jul 7, 2018
-
Script-SQLDatabaseRestore cmdlet in SQLDBATools Module
No Comments | Apr 14, 2018
-
Analyzing Deadlock Issues
2 Comments | Feb 21, 2017
-
Starting SQL Server Database Administration Classes from May 2018
No Comments | Apr 20, 2018
About The Author
Ajay Dwivedi
I am Microsoft Certified Professional having 10+ years of experience in SQL Server Querying, Database Design, and Administration. I am fond of Query Tuning and like to automate things using TSQL & PowerShell. I also have experience of implementing end-to-end Data Warehouse solution, and Data Migration using ETL tools SQL Server Integration Services (SSIS), Pentaho Business Analytics, and have designed Database Inventory through PowerShell, Python, and Django etc.