Jul 27, 2005 #1 PNC MIS Jun 7, 2001 87 US Hi, What's the equivalent in SQL Server of the server settings in Sybase [lock_wait_period]??? Thanks.
Hi, What's the equivalent in SQL Server of the server settings in Sybase [lock_wait_period]??? Thanks.
Jul 28, 2005 #2 flstffatboy Technical User Sep 19, 2002 84 I believe you can set this up on the server with the following command: sp_configure "lock wait period" [, no_of_seconds] It can be over ridden with a session level command of: set lock {wait no_of_seconds | nowait} Upvote 0 Downvote
I believe you can set this up on the server with the following command: sp_configure "lock wait period" [, no_of_seconds] It can be over ridden with a session level command of: set lock {wait no_of_seconds | nowait}
Jul 28, 2005 Thread starter #3 PNC MIS Jun 7, 2001 87 US The configuration option 'lock wait period' does not exist in SQL Server, is there an alternative??? I don't want to use SET LOCK because it's only on the session level. Thanks. Upvote 0 Downvote
The configuration option 'lock wait period' does not exist in SQL Server, is there an alternative??? I don't want to use SET LOCK because it's only on the session level. Thanks.