zoukankan      html  css  js  c++  java
  • 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 .

  • 相关阅读:
    第一节 麒麟系统安装+基础环境搭建(JDK+Scala)
    launchMode之的几种取值
    [JAVA · 0基础]:16.经常使用类
    hdu 2767 Proving Equivalences 强连通缩点
    一个最简单的示例与简单性能分析
    Opencl API解释(一)
    OpenCL 第10课:kernel,work_item和workgroup
    GPU 的硬件基本概念,Cuda和Opencl名词关系对应
    Ubuntu12.04-64bits搭建FFmpeg环境
    ubuntu64bits环境下搭建Opencl的环境
  • 原文地址:https://www.cnblogs.com/flysun0311/p/2261692.html
Copyright © 2011-2022 走看看