提交嵌套事务时是否会释放页锁?

时间:2012-07-23 08:07:17

标签: c# sql-server transactions locking transactionscope

众所周知,事务内部采用的数据库锁定在该事务结束时释放。所以,在这段代码中..

public static TransactionScope CreateTransactionScope()
{
    return new TransactionScope(TransactionScopeOption.Required,
     new TransactionOptions() { IsolationLevel = IsolationLevel.ReadCommitted });
}

实际上,在这一个......

using (DataContext dataContext = new DataContext())
using (TransactionScope rootScope = CreateTransactionScope())
{
    using (TransactionScope nested = CreateTransactionScope())
    {
        Ticket ticket = dataContext.ExecuteQuery<Ticket>(
          "SELECT * FROM Tickets WITH (UPDLOCK) WHERE id={0}", ticketId).First();
        nested.Complete();
    }

    // Will the lock be still ON here? Because I don't need him to be!
}

何时释放行/页锁(UPDLOCK) - 在处理嵌套事务或根管理事务后?

1 个答案:

答案 0 :(得分:2)

只有在根作用域退出使用块并将进行处置后才会释放。

学习这类东西的最好方法就是弄脏你的手。

使用表A和表B创建一个简单的数据库,每个包含单个列,将其命名为“TimeStamp”并创建插入时间戳(或任何类型的值)的简单控制台应用程序,您可以使用事务选项并学习行为。