Let's imagine I have two threads which execute some database-oriented code in thread-specific TransactionScopes with ReadCommitted isolation level. But there is some table which data should be shared (no duplicates should be created).
using (var transactionScope = new TransactionScope(IsolationLevel.ReadCommitted))
{
...//some code
if (!_someRepository.IsValueExists(value))
_someRepository.AddData(value);
...//some code
transactionScope.Complete();
}
The problem is both threads may check whether data exists at just about same time and if not - create duplicated data (constrains won't help here: I have to prevent exceptional situation to happen). I guess it is a trivial problem but how is it usually solved?
I see the following schematical solution:
using (var transactionScope = new TransactionScope(IsolationLevel.ReadCommitted))
{
...//some code
transactionScope.IsolationLevel = IsolationLevel.ReadUncommitted; //change Isolation Level
lock (_sharedDataLockObject)
{
if (!_someRepository.IsValueExists(value))
_someRepository.AddData(value);
}
transactionScope.IsolationLevel = IsolationLevel.ReadCommitted; //reset IsolationLevel
...//some code
transactionScope.Complete();
}
The first problem with this solution is that TransactionScope doesn't support IsolationLevel modification. But let's imagine I use ADO.NET transaction here. Nevertheless I'm not sure whether it works.
Snapshotisolation level help with you situation? This level reduces the locks as modified rows are copied. This way, other transactions can still read the old data without the need to wait for an unlock. – whyleee Feb 14 '11 at 20:25ReadCommittedisolation level locks records with a write-lock from other transactions.. Or not? – whyleee Feb 14 '11 at 20:44