|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 2:47 PM
Points: 1,178,
Visits: 2,701
|
|
GilaMonster (11/7/2012)
sqldba_newbie (11/7/2012) The locks are heldup for longer durations, how do i handle that?Longer duration than what?
Application is running slow and i do see the calls made by webserver are blocked.
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, June 12, 2013 10:53 AM
Points: 24,
Visits: 139
|
|
The right way to fix this is figure out why you have long running transactions that are blocking reads. In the SQL Server world, we like to see short, quick transactions. If you are having this issue without a high level of concurrency, you should look into your code to see why your transactions are blocking so long. If that doesn't solve it, I agree that read committed snapshot is the right approach. DO NOT use READ UNCOMMITTED.
|
|
|
|