August 24, 2009 at 4:56 pm
how to understand Blocking Problem in SQL Server 2005 and how to find solutions?
August 24, 2009 at 11:34 pm
Have a luk at this.
August 25, 2009 at 5:39 am
Hi,
You can find useful info at following links:
http://www.mssqltips.com/tip.asp?tip=1359
http://blogs.technet.com/rob/archive/2008/05/26/detecting-sql-server-2005-blocking.aspx
Ankur
August 25, 2009 at 6:04 am
charipg (8/24/2009)
how to understand Blocking Problem in SQL Server 2005 and how to find solutions?
Go through the articles that others have suggested.
Blocking can happen due to multiple reasons.
For example, if you've run a update statement on a table which is taking long time and other user is trying to perform a DML query, this scenario will cause blocking.
Blocking may also happen due to I/O.
There are some DMVs in SQL Server 2005 which will tell you whether there are blocking present or not
sys.dm_os_waiting_tasks is one of them...
August 25, 2009 at 7:50 am
thanks..........
August 25, 2009 at 12:23 pm
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply