Tagged Questions
The read-uncommitted tag has no wiki summary.
3
votes
4answers
2k views
High volume site using ADO.NET TransactionScope vs ExecuteCommand on NOLOCK, READ UNCOMMITTED directly?
Just read this interesting article by Omar on his blog Linq to SQL solve Transaction deadlock and Query timeout problem using uncommitted reads and at the end
Javed Hasan started arguing with him ...
1
vote
0answers
125 views
Getting Uncommitted Transactions Sqlite With System.Data.Sqlite
I am trying to get a count of uncommitted records in a SQLite database using the System.Data.Sqlite library. My research thus far has pointed towards using the PRAGMA read_committed, but I always get ...
0
votes
2answers
73 views
READ UNCOMMITTED and Estimates
From time to time, I want to run a stored procedure to get a rough estimate of how many records in two or three different tables satisfy some criteria. If during this estimate new records are added, ...
0
votes
1answer
710 views
How set transaction isolation level to ReadUncommitted in SQLite?
According to the answer on this post it states:
Did you know that ReadUncommitted will revert to Serialized isolation unless you've enabled the shared cache and both connections are from the same ...
0
votes
4answers
176 views
uncommitted reads?
I was looking at potential concurrency issues in DB so i went to read up. I found http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/admin/c0005267.htm and it ...