SQL Server exception capture, rollback, and then throw

Source: Internet
Author: User

Multiple update operations in a stored procedure, followed by an exception to the update operation, if you do not manually rollback the previously modified data is not automatically revoked!

BEGINTRYBEGIN TRAN-- .....    COMMIT TRANENDTRYBEGINCATCHROLLBACK TRAN    DECLARE @ErrorMessag NVARCHAR(255)    SELECT @ErrorMessag =error_message ()RAISERROR(15600,-1,-1,@ErrorMessag);ENDCatch

Another reference: http://msdn.microsoft.com/zh-cn/library/ms178592.aspx

BEGINTRY--RAISERROR with severity 11-19 would cause execution to    --Jump to the CATCH block.    RAISERROR('Error raised in TRY block.',--Message text.                -,--Severity.               1 --State .               );ENDTRYBEGINCATCHDECLARE @ErrorMessage NVARCHAR(4000); DECLARE @ErrorSeverity INT; DECLARE @ErrorState INT; SELECT         @ErrorMessage =error_message (),@ErrorSeverity =error_severity (),@ErrorState =error_state (); --Use RAISERROR inside the CATCH block to return error    --information about the original error that caused    --execution to the CATCH block.    RAISERROR(@ErrorMessage,--Message text.               @ErrorSeverity,--Severity.               @ErrorState --State .               );ENDCATCH;

SQL Server exception capture, rollback, and then throw

Related Article

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.