We're using a SQL Server 2005 database (no row versioning) with a huge select statement, and we're seeing it block other statements from running (seen using sp_who2). I didn't realise SELECT statements could cause blocking - is there anything I can do to mitigate this?
|
|
|||||||||
|
|
SELECT can block updates. A properly designed data model and query will only cause minimal blocking and not be an issue. The 'usual' WITH NOLOCK hint is almost always the wrong answer. The proper answer is to tune your query so it does not scan huge tables. If the query is untunable then you should first consider SNAPSHOT ISOLATION level, second you should consider using DATABASE SNAPSHOTS and last option should be DIRTY READS (and is better to change the isolation level rather than using the NOLOCK HINT). Note that dirty reads, as the name clearly states, will return inconsistent data (eg. your total sheet may be unbalanced). |
|||||||
|
|
From documentation:
A That means that your A For the time the lock exists, you will not be able to do anything with the data in the locked area. Two You can enable It, though, will prevent Also note that That means that under heavy load, the mere fact of placing and removing a lock may be slow, since the linked list should itself be locked by the transaction thread. |
|||||
|
|
To perform dirty reads you can either:
or
remember that you have to write WITH (NOLOCK) after every table you want to dirty read |
|||
|
|
|
You could set the transaction level to Read Uncommitted |
|||||||||
|
|
You might also get deadlocks: "deadlocks involving only one table" http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/01/01/reproducing-deadlocks-involving-only-one-table.aspx and or incorrect results: "Selects under READ COMMITTED and REPEATABLE READ may return incorrect results." |
|||
|
|