The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
112 views

Highlight git uncommitted files and folders on sublime text2 folder pane?

I'm making a switch over to sublime from Netbeans because netbeans won't startup anymore. I was wondering if anyone knows of a plugin for sublime that can highlight uncommitted files on the folders ...
0
votes
1answer
58 views

read uncommitted when using Rob Conery's Massive

is there a way to do a read uncommitted when using Rob Conery's Massive with out writing your own Query?
0
votes
2answers
105 views

delete an uncommited inserted row in DB2 (V8.2.7 - Fix 14)

Upon client's request, I was asked to turn a web application on read-uncommitted isolation level (it's a probably a bad idea...). While testing if the isolation was in place, I inserted a row ...
0
votes
2answers
252 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
3k 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 ...
1
vote
0answers
238 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 ...
2
votes
1answer
3k views

How to use WITH(NOLOCK) in LINQ to SQL?

we can use SQL just like this: SELECT * FROM student WITH(NOLOCK); How can I achieve this with LINQ to SQL without the use of a TransactionScope?
0
votes
4answers
288 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 ...
5
votes
4answers
4k 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 ...