Transcation And Lock--存储过程中使用事务的模板

某公司内部使用的模板

Transcation And Lock--存储过程中使用事务的模板
create procedure [usp_my_procedure_name]
as
begin
    set nocount on;
    declare @trancount int;
    set @trancount = @@trancount;
    begin try
        if @trancount = 0
            begin transaction
        else
            save transaction usp_my_procedure_name;

        -- Do the actual work here

lbexit:
        if @trancount = 0
            commit;
    end try
    begin catch
        declare @error int, @message varchar(4000), @xstate int;
        select @error = ERROR_NUMBER(), @message = ERROR_MESSAGE(), @xstate = XACT_STATE();
        if @xstate = -1
            rollback;
        if @xstate = 1 and @trancount = 0
            rollback
        if @xstate = 1 and @trancount > 0
            rollback transaction usp_my_procedure_name;

        raiserror (usp_my_procedure_name: %d: %s, 16, 1, @error, @message) ;
    end catch
end
go
Transcation And Lock--存储过程中使用事务的模板

Transcation And Lock--存储过程中使用事务的模板

上一篇:Transcation And Lock--由外键导致的死锁


下一篇:Java虚拟机规范(Java SE 7)笔记