Specifies the number of milliseconds a statement waits for a lock to be released.
DECLARE @SQL VARCHAR (50) = 'SET LOCK_TIMEOUT 5000;';
EXEC (@SQL);
Specifies the number of milliseconds a statement waits for a lock to be released.
DECLARE @SQL VARCHAR (50) = 'SET LOCK_TIMEOUT 5000;';
EXEC (@SQL);
Comments