Viewing post 1 (of 1 total)
Hi all
I had the same problem, the solution I found is
1) set the transaction isolation level to be READ UNCOMMITTED
http://msdn.microsoft.com/it-it/library/ms173763.aspx
2) use WITH (NOLOCK) when querying:
select * from MyTable WITH...
February 5, 2011 at 10:13 am
#1282805