Viewing 3 posts - 1 through 3 (of 3 total)
What that means? What no solution? Do I have to set the option IGNORE_DUP_KEY=OFF to work well locks when inserting? Is not there another solution? :crying:
thanks and regards
November 13, 2013 at 5:24 am
This is an example:
Example A:
CREATE TABLE Tabla (Codigo Int, Fecha Date);
CREATE UNIQUE NONCLUSTERED INDEX X_Prueba ON Tabla (Codigo) WITH (IGNORE_DUP_KEY=ON);
(In session 1)
BEGIN TRAN
INSERT Tabla VALUES (1,'01/01/2013')
(1 rows affected)
(In session 2)
BEGIN...
November 13, 2013 at 2:08 am
Hola Luis, gracias por tu respuesta,
pero quiero comentarte que no son problemas distintos, antes de solicitar ayuda en el foro he analizado todo lo que me comentas. He probado las...
November 13, 2013 at 1:05 am
Viewing 3 posts - 1 through 3 (of 3 total)