0
votes
1answer
68 views

optimal isolation level for specific applications

Trying to understand isolation levels better - using entity framework and sql server What would be the recommended isolation level for the following scenario - An online booking system say for ...
1
vote
1answer
77 views

Read old data from the table, while some transaction is writing to the same table

What I want is being able to read old data from the table, while some transaction is writing to the same table. When such atomic writing is completed, I want to replace the old data with the new one. ...
0
votes
3answers
214 views

SQL server Isolation level

I have n machines writing to DB (sql server) at the exact same time (initiating a transaction). I'm setting the Isolation level to serializable. My understanding is that whichever machine's ...
2
votes
2answers
379 views

entity framework transactions and sql azure default isolation level

According to this article http://social.technet.microsoft.com/wiki/contents/articles/handling-transactions-in-sql-azure.aspx SQL Azure default database wide setting is to enable read committed ...
4
votes
2answers
2k views

Why is System.Transactions TransactionScope default Isolationlevel Serializable

I am just wondering what a good reason to use Serializable as the default Isolationlevel may be when creating a the System.Transactions TransactionScope, because I cannot think of any (and it seems ...
0
votes
1answer
778 views

'dirty read' not working during transaction scope set with readuncommitted isolation level

I have a code that goes something like this: using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required), new TransactionOptions) { IsolationLevel = ...
1
vote
1answer
165 views

Entity framework serial transaction takes too much time to complete

I am writing a serial transaction and had some troubles. If I only execute one thread, it executes fast, no waiting. If I execute two or more threads, the first thread that complete takes too much ...
0
votes
1answer
571 views

Multiple isolation levels needed for a TransactionScope?

I am running into situations in my application where I need to use table lock hints or set the transaction isolation level to something other than the default Read Committed, in order to resolve ...
5
votes
1answer
1k views

TransactionScope and Connection Pooling

I'm trying to get a handle on whether we have a problem in our application with database connections using incorrect IsolationLevels. Our application is a .Net 3.5 database app using SQL Server 2005. ...