SQL Server中帶事務的預存程序簡單舉例

來源:互聯網
上載者:User

標籤:使用   io   資料   cti   代碼   工作   資料庫   sql   

先來看一個概念:

  資料庫事務(Database Transaction) ,是指作為單個邏輯工作單元執行的一系列操作,要麼完整地執行,要麼完全地不執行。那麼在預存程序裡添加事務,則可以保證該事務裡的所有sql代碼要麼完全執行要麼完全不執行。

  舉個簡單的帶事務的預存程序:

  Begin
    Set NOCOUNT ON; --不返回影響行數
    Set XACT_ABORT ON; --使用預存程序執行事務需要開啟XACT_ABORT參數(預設為OFF)

      delete from table1 where name=‘‘ --刪除資料sql1
    begin tran tran1 --開始一個事務tran1
      delete from table1 where name=‘‘ --刪除資料sql2
    save tran tran2 --儲存一個事務點tran2
      update table2 set name=‘‘ where id=‘‘ --修改資料sql3

      if @@error<>0 --判斷修改資料有沒有錯誤(@@error表示返回與@@ERROR 最近的語句(即sql3)的非零的錯誤碼,沒有錯誤則返回0)

        begin
          rollback tran tran2 --復原事務到tran2的還原點
          commit tran tran1 --提交事務tran1
        end
      else --沒有出錯則提交事務tran1
        commit tran tran1 --提交事務tran1
  End

  如果sql3執行失敗,則會復原到事務tran2的建立處(相當於出來sql1和sql2執行外都未執行)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.