Cannot resolve collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" error

These kind of errors are often thrown in sql. Today i am going to tell you ,how to resolve this error.


  1. At first we should identify which column creates this issue.
  2. Next we have to add "COLLATE DATABASE_DEFAULT" this keyword next to the column.
  3. Now you won't have this error.


Example:
select e.employeeName COLLATE DATABASE_DEFAULT from employee

Comments

Popular posts from this blog

Types of Architects

Basic measurements

Search html table contents based on its td using Jquery