sql >> Database >  >> RDS >> Sqlserver

Hoe een transactie op de sql-server vast te leggen en terug te draaien?

Gebruik @@ERROR niet , gebruik BEGIN TRY/BEGIN CATCH in plaats van. Zie dit artikel:Afhandeling van uitzonderingen en geneste transacties voor een voorbeeldprocedure:

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) ;
        return;
    end catch   
end


  1. Database-omschakeling en failover voor Drupal-websites met MySQL of PostgreSQL

  2. Python- en MySQL-database:een praktische introductie

  3. Hoe een 32-bits SSIS-pakket in een 64-bits pakket uit te voeren?

  4. MySQL IN TUSSEN zonder voorwaarde