Estou tentando criar um procedimento armazenado, mas ele me dá a mensagem de erro
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_BIN2" in the EXCEPT operation.
O fato é que tanto o banco de dados quanto o agrupamento do servidor são SQL_Latin1_General_CP1_CI_AS
e não tenho ideia de onde Latin1_General_BIN2
vem o agrupamento.
create procedure [ETL_1.4.0].update_valve_event_type
(
@data nvarchar(max)
)
as
declare @mismatch_table table(id int, [name] varchar(50))
if isjson(@data) = 0
begin
;throw 50000,'Input argument @data is invalid JSON.', 1
end
insert @mismatch_table (id, [name])
select * from
(
select
value as id,
[key] as [name]
from openjson(@data)
except
select
id,
[name]
from enum.valve_event
)data
--clear mismatches that are deemed ok, e.g. spelling corrections
delete from @mismatch_table
where id = 10 and [name] = 'FEEDBACK_FROM_USER'
if exists(select * from @mismatch_table)
begin
;throw 50000,'Terminal version of enum for valve events does not match the EDW version', 1
end
go
Então, alguém pode explicar o que estou perdendo?
Se for importante, esse banco de dados (e servidor) ainda não está ativo, portanto, tecnicamente, posso alterar os agrupamentos onde quiser.