Mar 14, 2001 #1 jcrivera Technical User Sep 14, 2000 46 PR I know there's some sort of stored procedure to increase the number of locks but I can't find it (MSSQL 7.0) Can somebody give me a hand? Thanks.
I know there's some sort of stored procedure to increase the number of locks but I can't find it (MSSQL 7.0) Can somebody give me a hand? Thanks.
Mar 14, 2001 #2 Andel Programmer Feb 15, 2001 366 US First, make sure that 'show advance option' is set to 1. sp_configure 'show advance option', 1 reconfigure with override then increase the locks (e.g. increasing it by 10000) sp_configure locks, 10000 reconfigure with override hope this helps... Andel andelbarroga@hotmail.com http://andyb.8m.com Upvote 0 Downvote
First, make sure that 'show advance option' is set to 1. sp_configure 'show advance option', 1 reconfigure with override then increase the locks (e.g. increasing it by 10000) sp_configure locks, 10000 reconfigure with override hope this helps... Andel andelbarroga@hotmail.com http://andyb.8m.com