标签:
其语法如下:
RAISERROR ( { msg_id | msg_str | @local_variable }
{ ,severity ,state }
[ ,argument [ ,...n ] ]
)
[ WITH option [ ,...n ] ]
简要说明一下:
DECLARE @raiseErrorCode nvarchar(50) SET @raiseErrorCode = CONVERT(nvarchar(50), YOUR UNIQUEIDENTIFIER KEY) RAISERROR(‘%s INVALID ID. There is no record in table‘,16,1, @raiseErrorCode)
--示例2
RAISERROR ( N‘This is message %s %d.‘, -- Message text, 10, -- Severity, 1, -- State, N‘number‘, -- First argument. 5 -- Second argument. ); -- The message text returned is: This is message number 5. GO
-示例3
RAISERROR (N‘<<%*.*s>>‘, -- Message text. 10, -- Severity, 1, -- State, 7, -- First argument used for width. 3, -- Second argument used for precision. N‘abcde‘); -- Third argument supplies the string. -- The message text returned is: << abc>>. GO
--示例4
RAISERROR (N‘<<%7.3s>>‘, -- Message text. 10, -- Severity, 1, -- State, N‘abcde‘); -- First argument supplies the string. -- The message text returned is: << abc>>. GO
--A. 从 CATCH 块返回错误消息
以下代码示例显示如何在 TRY 块中使用 RAISERROR 使执行跳至关联的 CATCH 块中。
它还显示如何使用 RAISERROR 返回有关调用 CATCH 块的错误的信息。
BEGIN TRY RAISERROR (‘Error raised in TRY block.‘, -- Message text. 16, -- Severity. 1 -- State. ); END TRY BEGIN CATCH DECLARE @ErrorMessage NVARCHAR(4000); DECLARE @ErrorSeverity INT; DECLARE @ErrorState INT; SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY(), @ErrorState = ERROR_STATE(); RAISERROR (@ErrorMessage, -- Message text. @ErrorSeverity, -- Severity. @ErrorState -- State. ); END CATCH;
--B. 在 sys.messages 中创建即席消息
以下示例显示如何引发 sys.messages 目录视图中存储的消息。
该消息通过 sp_addmessage 系统存储过程,以消息号50005添加到 sys.messages 目录视图中。
sp_addmessage @msgnum = 50005, @severity = 10, @msgtext = N‘<<%7.3s>>‘; GO RAISERROR (50005, -- Message id. 10, -- Severity, 1, -- State, N‘abcde‘); -- First argument supplies the string. -- The message text returned is: << abc>>. GO sp_dropmessage @msgnum = 50005; GO
--示例7
--C. 使用局部变量提供消息文本
以下代码示例显示如何使用局部变量为 RAISERROR 语句提供消息文本。
sp_addmessage @msgnum = 50005, @severity = 10, @msgtext = N‘<<%7.3s>>‘; GO RAISERROR (50005, -- Message id. 10, -- Severity, 1, -- State, N‘abcde‘); -- First argument supplies the string. -- The message text returned is: << abc>>. GO sp_dropmessage @msgnum = 50005; GO
标签:
原文地址:http://www.cnblogs.com/CandiceW/p/4321334.html