• Understanding what the WITH ROLLBACK IMMEDIATE does


    Based on some questions on forums and some of the responses that people have been giving there appears to be done misunderstanding about what the WITH ROLLBACK IMMEDIATE option does when added to the ALTER DATABASE command.  My goal here is to try and clear up at least some of the confusion.

    When you run the ALTER DATABASE command without a termination clause (ROLLBACK AFTER, ROLLBACK IMMEDIATE, NO_WAIT) the ALTER DATABASE command will run until the command completes, or until if command is terminated.

    The ROLLBACK AFTER command tells the SQL Server to cancel any pending transactions and rollback those transactions after N number of seconds.

    SQL:
    1. ALTER DATABASE YourDatabase
    2. WITH ROLLBACK AFTER 30

    The ROLLBACK IMMEDIATE command tells the SQL Server that if it can’t complete the command right away, then the other pending transactions should be rolled back.

    The NO_WAIT command has the opposite effect as ROLLBACK IMMEDIATE.  If the ALTER DATABASE transaction can’t be completed then that transaction is terminated.

    SQL:
    1. ALTER DATABASE YourDatabase
    2. WITH NO_WAIT

    Hopefully this helps clear up some of the confusion.

    Denny

    Comment on this Post


    You must be logged-in to post a comment. Log-in/Register

    Jameslean  |   Sep 24 2009   4:05PM GMT

    The NO_WAIT command has the same effect as ROLLBACK IMMEDIATE.

    I don't think this is correct. WITH ROLLBACK AFTER | IMMEDIATE specifies when any other transactions in the database should be rolled back, eg when setting the db to single user mode.

    NO_WAIT specifies that if the ALTER DATABASE command cannot complete, ie other open transactions exist, then the ALTER command itself should rollback/fail.


     


    Jameslean  |   Sep 24 2009   4:06PM GMT

    NB, the first line in my above post is the quote that I don't think is correct!


     


    mrdenny  |   Sep 24 2009   6:26PM GMT

    I'm not sure how I managed to get that so wrong. I've updated the blog post so that it's correct.


     


    Fhhdjfhjdhfjhjdfh  |   May 21 2010   10:30AM GMT

    HI,

    when i run the command

    alter database northwind
    set multi_user with rollback immediate

    the northwind database shows ACCESS denied and tagged as SINGLE USER
    i donot understand why it so .can u pls explain .

  • 相关阅读:
    Acwing 284.金字塔 (区间DP)
    Acwing 283.多边形 (区间DP)
    Acwing 277.饼干 (DP+排序不等式)
    Acwing 274.移动服务 (DP)
    Acwing 273.分级 (DP)
    Acwing 271.杨老师的照相排序 (DP)
    Acwing 272.最长公共上升子序列 (DP)
    Mybatis-缓存
    mybatis与spring整合
    mybatis-sql映射文件
  • 原文地址:https://www.cnblogs.com/flysun0311/p/2261692.html
Copyright © 2020-2023  润新知