Subject | Get exception message in storedproc |
---|---|
Author | |
Post date | 2014-10-24T08:29:52Z |
CREATE PROCEDURE TESTPROC
AS
BEGIN
/* Something that can throw any exception */
WHEN ANY DO BEGIN
/* How to get here exception text for logging? */
END
END
Subject | Get exception message in storedproc |
---|---|
Author | |
Post date | 2014-10-24T08:29:52Z |
CREATE PROCEDURE TESTPROC
AS
BEGIN
/* Something that can throw any exception */
WHEN ANY DO BEGIN
/* How to get here exception text for logging? */
END
END