Cannot resolve the collation conflict between "Latin1_General_CI_AS" and "SQL_Latin1_General_CP1_CI_AI" in the equal to operation.

Ĉ¿

Cannot resolve the collation conflict between "Latin1_General_CI_AS" and "SQL_Latin1_General_CP1_CI_AI" in the equal to operation.


  SELECT 
*
  FROM 
A
  JOIN
N ON A.CAMPO_VARCHAR = B.CAMPO_VARCHAR



Apareceu está mensagem ao realizar um relacionamento com campos VARCHAR ?, simples basta acrescentar o COLLATE conforme exemplo abaixo


  SELECT 
*
  FROM 
A
  JOIN
N ON A.CAMPO_VARCHAR COLLATE  Latin1_General_CI_AS  = B.CAMPO_VARCHAR COLLATE  Latin1_General_CI_AS 

 Att

Comandos git do dia a dia

Ĉ¿ #Criando um projeto do zero echo "# UBBOAT_App" >> README.md git init git add README.md git commit -m "first commi...