回答

收藏

RAISERROR()语法意义是什么?

技术问答 技术问答 362 人阅读 | 0 人回复 | 2023-09-14

我刚创造了一个After After Trigger,语法如下:
6 S! e- z/ F; A+ G( h: U$ dCreate trigger tgrInsteadTrigger on copytabletoInstead of Insert as     Declare @store_name varchar(30);    declare @sales int;    declare @date datetime;    select @store_name = i.store_name from inserted i    select @sales = i.sales from inserted i    select @date = i.Date from inserted ibegin    if (@sales >    begin        RAISERROR('Cannot Insert where salary > ROLLBACK;        end    else        begin        insert into copytablefrom(store_name,sales,date) values (@store_name,@sales,@date);        Print 'Instead After Trigger Executed      endEnd在上述语法中,我使用了 RAISERROR('Cannot Insert where salary > 1000',16,1)
2 v" F4 y7 ~  [; E, D$ {但是当我写RAISERROR('Cannot Insert where salary >1000')它在同一行上犯了错误’)’附近的语法不正确。- X. X' y! f8 ?& }$ F: s) c
任何人都可以在这里解释(16、1)的用法。
) X: w5 ?# `3 d( O5 C                                                               
/ I( n) ^5 q2 y8 V$ R1 ?$ D0 n    解决方案:                                                                6 |# L$ p' G2 d/ s- }- q
                                                                是严重程度error。级别是11-会导致错误SQL。级别越高,级别越严重,transaction该级别应暂停。3 S0 [* ~! M, _3 k; h1 w1 y% D7 C3 |
在执行以下操作时,您将收到语法错误:1 I2 I. N& U' o
RAISERROR('Cannot Insert where salary > 1000').因为你没有指定正确的指定parameters(severity level或state)。
- B# L; ^. b# o" P% U6 t  u如果你想发出警告,而不是警告exception,请使用0-10级。
% `& ~& M9 \" t: i从MSDN:9 t/ d7 b4 y2 U8 G
严重程度
- A7 h8 v# x( y+ ?" @用户定义的严重性水平与消息相关。msg_id引发使用sp_addmessage在创建用户定义的消息时RAISERROR上述指定的严重性将被覆盖sp_addmessage中指定的严重性。任何用户都可以指定从0到18的严重级别。只能由sysadmin具有固定服务器角色的成员或ALTER" j( z7 t* z' f  h. b, V. ^
TRACE权限用户指定从19到25的严重程度。对于19到25的严重程度,需要WITH LOG选项。
; H- {# o; b- s6 _; R) p0 S7 \状态
. u2 G/ L. N* N是0到255之间的整数。负值或大于255的值会产生错误。如果同一用户定义错误发生在多个位置,使用每个位置的唯一状态号可以帮助找到导致错误的代码部分。这里有一个详细的解释
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则