0--Procedurecalledwhenthereis--anactivetransaction.--Createasavepointtobeable--torollbackonlytheworkdone--intheprocedureifthereisan--error.SAVE" />

欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

SQL Server 事務(wù)嵌套

系統(tǒng) 2094 0
原文: SQL Server 事務(wù)嵌套

示例代碼:

      
        DECLARE
      
      
        @TranCounter
      
      
        INT
      
      
        ;




      
      
        SET
      
      
        @TranCounter
      
      
        =
      
      
        @@TRANCOUNT
      
      
        ;


      
      
        IF
      
      
        @TranCounter
      
      
        >
      
      
        0
      
      
        --
      
      
         Procedure called when there is
      
      
        --
      
      
         an active transaction.
      
      
        --
      
      
         Create a savepoint to be able
      
      
        --
      
      
         to roll back only the work done
      
      
        --
      
      
         in the procedure if there is an
      
      
        --
      
      
         error.
      
      
        SAVE
      
      
        TRANSACTION
      
      
         ProcedureSave;


      
      
        ELSE
      
      
        --
      
      
         Procedure must start its own
      
      
        --
      
      
         transaction.
      
      
        BEGIN
      
      
        TRANSACTION
      
      
        ;


      
      
        --
      
      
         Modify database.
      
      
        BEGIN
      
      
         TRY



    
      
      
        /*
      
      
        *

        Write your T-SQL here...

    *
      
      
        */
      
      
        --
      
      
         Get here if no errors; must commit
      
      
        --
      
      
         any transaction started in the
      
      
        --
      
      
         procedure, but not commit a transaction
      
      
        --
      
      
         started before the transaction was called.
      
      
        IF
      
      
        @TranCounter
      
      
        =
      
      
        0
      
      
        --
      
      
         @TranCounter = 0 means no transaction was
      
      
        --
      
      
         started before the procedure was called.
      
      
        --
      
      
         The procedure must commit the transaction
      
      
        --
      
      
         it started.
      
      
        COMMIT
      
      
        TRANSACTION
      
      
        ;


      
      
        END
      
      
         TRY


      
      
        BEGIN
      
      
         CATCH

    
      
      
        --
      
      
         An error occurred; must determine
      
      
        --
      
      
         which type of rollback will roll
      
      
        --
      
      
         back only the work done in the
      
      
        --
      
      
         procedure.
      
      
        IF
      
      
        @TranCounter
      
      
        =
      
      
        0
      
      
        --
      
      
         Transaction started in procedure.
      
      
        --
      
      
         Roll back complete transaction.
      
      
        ROLLBACK
      
      
        TRANSACTION
      
      
        ;

    
      
      
        ELSE
      
      
        --
      
      
         Transaction started before procedure
      
      
        --
      
      
         called, do not roll back modifications
      
      
        --
      
      
         made before the procedure was called.
      
      
        IF
      
       XACT_STATE() 
      
        <>
      
      
        -
      
      
        1
      
      
        --
      
      
         If the transaction is still valid, just
      
      
        --
      
      
         roll back to the savepoint set at the
      
      
        --
      
      
         start of the stored procedure.
      
      
        ROLLBACK
      
      
        TRANSACTION
      
      
         ProcedureSave;

            
      
      
        --
      
      
         If the transaction is uncommitable, a
      
      
        --
      
      
         rollback to the savepoint is not allowed
      
      
        --
      
      
         because the savepoint rollback writes to
      
      
        --
      
      
         the log. Just return to the caller, which
      
      
        --
      
      
         should roll back the outer transaction.
      
      
        --
      
      
         After the appropriate rollback, echo error
      
      
        --
      
      
         information to the caller.
      
      
        DECLARE
      
      
        @ErrorMessage
      
      
        NVARCHAR
      
      (
      
        4000
      
      
        );

    
      
      
        DECLARE
      
      
        @ErrorSeverity
      
      
        INT
      
      
        ;

    
      
      
        DECLARE
      
      
        @ErrorState
      
      
        INT
      
      
        ;



    
      
      
        SELECT
      
      
        @ErrorMessage
      
      
        =
      
      
         ERROR_MESSAGE();

    
      
      
        SELECT
      
      
        @ErrorSeverity
      
      
        =
      
      
         ERROR_SEVERITY();

    
      
      
        SELECT
      
      
        @ErrorState
      
      
        =
      
      
         ERROR_STATE();



    
      
      
        RAISERROR
      
       (
      
        @ErrorMessage
      
      , 
      
        @ErrorSeverity
      
      , 
      
        @ErrorState
      
      
        );




      
      
        END
      
       CATCH
    

?

SQL Server 事務(wù)嵌套


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产在线小视频 | 欧美一区二区三区免费高 | 欧美777精品久久久久网 | 国产日韩精品视频 | 久草社区在线 | 免费在线看a | 亚洲国产天堂久久精品网 | 日本高清va不卡视频在线观看 | 欧美黄色大片在线观看 | 亚洲 中文 欧美 日韩 在线 | 波多久久夜色精品国产 | 中文在线观看免费视频 | 亚洲综合精品一区二区三区中文 | 小优视频污 | 激情小说图 | 久久精品人人做人人爽 | 欧洲一级毛片 | 男人和女人做爰毛片试看 | 免费看欧美成人性色生活片 | 婷婷激情综合五月天 | 三人弄娇妻高潮3p视频 | 嘿咻嘿咻免费区在线观看吃奶 | 免费xxx8888| 欧美aaa级 | 亚洲人成在线精品 | 青娱乐免费 | 日本道专区无码中文字幕 | 精品国产一区在线观看 | 香港一级毛片在线播放 | 久久中文字幕在线 | 成人午夜亚洲影视在线观看 | 涩涩色综合亚洲悠悠色 | 天天色综合3 | 99久久精品国产一区二区成人 | 午夜影院恐怖电影免费看 | 国产gav成人免费播放视频 | 国产精品二区三区 | 日本人videos18videosrrty | 日本不卡在线观看免费v | 国产欧美日韩免费 | 免费观看的av |