Home All Groups Group Topic Archive Search About

transaction isolation level

Author
23 Aug 2006 6:24 PM
Mark
Hello,

I'm using the following code implementing transactions:

Using trans1 As New Transactions.TransactionScope
       'Data manipulations here!
End using

How do I change the transaction isolation level?

Any help greatly appreciated!
Thanks in advance

Author
23 Aug 2006 9:05 PM
bishop
Call a stored procedure- Use TSQL inside stored procs to set
transacation isolation levels
SET TRANSACTION ISOLATION LEVEL read uncommitted
BEGIN TRANSACTION
  -- Tsql code
END TRANSACTION

Hope this helps. "SQL Books online " is your friend.

Mark wrote:
Show quoteHide quote
> Hello,
>
> I'm using the following code implementing transactions:
>
>  Using trans1 As New Transactions.TransactionScope
>        'Data manipulations here!
>  End using
>
> How do I change the transaction isolation level?
>
> Any help greatly appreciated!
> Thanks in advance