I was not specifying any level in particular so I guess the default is
readcommited ?
The problem is that whatever isolation level I specify in
BeginTransaction, while the transaction is being executed, no one can
access the table in the database. It should only be the case if I was
using SERIALIAZABLE as you mentionned it. So is there any chances that
SQL Server is actually overriding whatever values I use with another
value of its own (serializable most likely) ? How can I check that ?
This is giving me a really bad time, and I don't know how I'm going to
solve this :(
On Jul 12, 7:04 am, "Daniel Marohn" <cami...@community.nospamwrote:
Hi
I've noticed that when I'm debug mode and I stop just after
_adpCutting.Update(_dtCutting), then I can't access my SQL table from
anywhere (even from SQLServer Enterprise or any other applications).
I guess the IsolationLevel of the transaction is serialisable. Do you really
need this level? If yes, there is no solution for your problem, otherwise
set it to the really needed level.
Greets
Daniel