transaction isolation level

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top