Ok, aggiungerò la nostra gestione degli errori in :-)
Le funzioni ERROR_%() sono visibili nell'ambito del blocco CATCH. Ciò significa che puoi usarli in un processo memorizzato o in una chiamata di funzione in ogni blocco CATCH
E con i processi archiviati nidificati, è utile sapere cosa ha causato l'errore e cosa sta registrando l'errore
...
END TRY
BEGIN CATCH
IF XACT_STATE() <> 0 AND @starttrancount = 0
ROLLBACK TRANSACTION
EXEC dbo.MyExceptionHandler @@PROCID, @errmsg OUTPUT;
RAISERROR (@errmsg, 16, 1);
END CATCH
---with this handler (cut down version of ours)
CREATE PROCEDURE dbo.MyExceptionHandler
@CallerProcID int,
@ErrorMessage varchar(2000) OUTPUT
WITH EXECUTE AS OWNER --may be needed to get around metadata visibility issues of OBJECT_NAME
AS
SET NOCOUNT, XACT_ABORT ON;
BEGIN TRY
SET @ErrorMessage = --cutdown
CASE
WHEN @errproc = @callerproc THEN --Caller = error generator
--build up stuff
ELSE --Just append stuff --Nested error stack
END;
IF @@TRANCOUNT = 0
INSERT dbo.Exception (Who, TheError, WhatBy, LoggedBy)
VALUES (ORIGINAL_LOGIN()), RTRIM(ERROR_MESSAGE()), ERROR_PROCEDURE(), OBJECT_NAME(@CallerProcID));
END TRY
BEGIN CATCH
--and do what exactly?
END CATCH
GO
Questa è comunque l'idea di base:ogni blocco CATCH è semplice, il lavoro continua nel gestore degli errori. Ad esempio, aggiungi ERROR_NUMBER()
se vuoi