Mam problemy z współbieżnością z moimi wstawkami w procedurze przechowywanej. Odpowiednia część procedury jest następująca:
select @_id = Id from table1 where othervalue = @_othervalue
IF( @_id IS NULL)
BEGIN
insert into table1 (othervalue) values (@_othervalue)
select @_id = Id from table1 where othervalue = @_othervalue
END
Kiedy uruchamiamy 3 lub 4 z tych przechowywanych proc jednocześnie, otrzymujemy od czasu do czasu wiele wstawek.
Planuję to naprawić tak:
insert into table1 (othervalue)
select TOP(1) @_othervalue as othervalue from table1 WITH(UPDLOCK)
where NOT EXISTS ( select * from table1 where othervalue = @_othervalue )
select @_id = Id from table1 where othervalue = @_othervalue
Pytanie brzmi, czy to jak wstawiać jednocześnie bez duplikatów na serwerze SQL? Niepokoi mnie fakt, że muszę używać TOP, aby wstawić tylko raz.