Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Forçando um tempo limite de consulta no SQL Server


execute isso e tente sua inserção ...
select * from yourTable with (holdlock,tablockx)

aqui, você pode bloqueá-lo por 5 minutos:
BEGIN TRANSACTION

SELECT * FROM yourTable WITH (TABLOCKX, HOLDLOCK)

WHERE 0 = 1

WAITFOR DELAY '00:05'

ROLLBACK TRANSACTION