2

私はネストされたかなり複雑なSP(ロジックに関して)を持っていますIF BEGIN END ELSE。このネストされたロジックには、ロジックが失敗する複数のエンドポイントがあり、私RAISERRORと2つの場所で成功し、SQLが実行されます。

どのように、SPの最後にエラーをトラップして実行できますかIF Error Count>0 THEN ROLLBACK

DECLARE @errCount int=0
DECLARE @DataSetCount int=0
DECLARE @countCurrent int=0
DECLARE @countHistorical int=0


IF (isnumeric(@DataSetID)=(0) OR @DataSetID=(0)) 
BEGIN
    RAISERROR('The DataSet specfied does not appear to be valid', 5, 1)
END
ELSE
IF  (@Destination='C' OR @Destination='H') 
    BEGIN
        if Exists (SELECT NULL from tblOpportunityDataSets where DataSetID=@DataSetID)
        BEGIN
            SET @countCurrent=(SELECT COUNT(1) from tblOptyRecordsCurrent where DataSetID=@DataSetID)
            SET @countHistorical=(SELECT COUNT(1) from tblOptyRecordsHistorical where DataSetID=@DataSetID)
            IF @destination='C'
            BEGIN
                if @countCurrent>0 
                BEGIN
                    RAISERROR('There are already existing records in the Current Tables for the specified DataSet', 5, 1)
                END ELSE
                if @countHistorical=0 
                BEGIN
                    RAISERROR('There do not appear to be any records in the Historical Tables to transfer for the specified Dataset', 5, 1)
                END ELSE
                BEGIN
                    -- ENTER TRANSFER CODE
                    INSERT INTO tblRecordsHistorical
                    ( X, Y, Z ) 
                    SELECT X, Y, Z  FROM tblA
                    WHERE x=y
                    -- Check that record count in both tables match
                    SET @countCurrent=(SELECT COUNT(1) from tblOptyRecordsCurrent where DataSetID=@DataSetID)
                    SET @countHistorical=(SELECT COUNT(1) from tblOptyRecordsHistorical where DataSetID=@DataSetID)
                    IF (@countCurrent<>@countHistorical)
                    BEGIN
                        RAISERROR('There was an error whilst copying the records into the Historical Tables, Source and Destination Record Count do not match', 5, 1)
                    END ELSE
                    BEGIN


                    END
                END
            END ELSE
            IF @Destination='H'
            BEGIN
                if @countHistorical>0 
                BEGIN
                    RAISERROR('There are already existing records in the Historical Tables for the specified DataSet', 5, 1)
                END ELSE
                if @countCurrent=0 
                BEGIN
                    RAISERROR('There do not appear to be any records in the Historical Tables to transfer for the specified Dataset', 5, 1)
                END ELSE
                BEGIN
                    RAISERROR('DataSet Found, ready to transfer records to HISTORICAL', 5, 1)       
                    -- ENTER TRANSFER CODE
                    INSERT INTO tblOptyRecordsCurrent
                    ( X, Y, Z ) 
                    SELECT X, Y, Z  FROM tblB
                    WHERE x=y
                    -- Check that record count in both tables match
                    SET @countCurrent=(SELECT COUNT(1) from tblOptyRecordsCurrent where DataSetID=@DataSetID)
                    SET @countHistorical=(SELECT COUNT(1) from tblOptyRecordsHistorical where DataSetID=@DataSetID)



                END
            END
        END
        ELSE
        BEGIN
            RAISERROR('The DataSet you have specified cannot be found', 5, 1)
        END
    END
    ELSE
    BEGIN
        RAISERROR('You have not specified a valid Destination', 5, 1)
    END

INSERT INTOコードを含む2つのセクションには、少なくとも2つの追加のSQLアクションステートメントがあることに注意してください。これらはすべて機能する必要があり、そうでない場合はすべて失敗します。

編集:私は行ってきました

BEGIN TRAN
BEGIN TRY
    -- STATEMENT 1
    INSERT INTO X WHERE Y
    -- STATEMENT 2
    DELETE FROM X WHERE Y
    -- STATEMENT 3
    UPDATE X WHERE Y
    COMMIT
END TRY
BEGIN CATCH
    ROLLBACK TRAN
    RAISERROR('There was an error whilst copying the records into the Current Tables.  The Transaction has been rolled back', 5, 1)
END CATCH                               
4

2 に答える 2

5

を実行できるようにするには、最初rollbackにを実行する必要がありますbegin transaction

次に、commitまたはrollbackアクションのいずれか。

http://msdn.microsoft.com/en-us/library/ms174377

try/catch構文が簡単になる場合があります

http://msdn.microsoft.com/en-us/library/ms175976(v=sql.90).aspx

于 2012-09-13T09:33:55.590 に答える
0

ストアドプロシージャ内でトランザクションを使用できます。SPのトランザクションのリンクを参照してください

于 2012-09-13T09:32:49.073 に答える