SQL2000 transaction rollback

Source: Internet
Author: User

Copy codeThe Code is as follows:
Create procedure test_tran
As
Set xact_abort on ----- judge by @ error. For serious errors, the system will not execute the subsequent judgment on @ error, and the execution will be terminated directly. Therefore, it is necessary to set xact_abort on.
Begin transaction RemoteUpdate
Insert psn_degree values (22, 'test ')
Select 1, 1/0
IF @ error! = 0 BEGIN
Rollback transaction RemoteUpdate
RAISERROR ('error! Slow network speed or disconnection! ', 16, 16) WITH SETERROR
RETURN --- no return will continue to be executed
End
Else begin
Commit transaction RemoteUpdate
End

You can also change it:
Copy codeThe Code is as follows:
IF @ error! = 0 BEGIN
Rollback transaction RemoteUpdate
RAISERROR ('error! Slow network speed or disconnection! ', 16, 16) WITH SETERROR
RETURN --- no return will continue to be executed
End
Commit transaction RemoteUpdate

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.