运行 SQL Server 2005 脚本时如何抑制 T-SQL 警告?
是否可以抑制 T-SQL 脚本生成的警告?如果是这样,怎么办?
我知道我可以使用以下命令关闭“受影响的记录”消息,
SET NOCOUNT ON
但是是否有等效的警告? 例如:
Warning: Null value is eliminated by an aggregate or other SET operation.
如果我预计会出现这些错误,那么它有助于从大脚本中的无用信息中筛选出真正的错误。
谢谢。
Is it possible to suppress warnings generated by T-SQL scripts? If so, how?
I know I can turn of the 'records affected' messages with
SET NOCOUNT ON
but is there an equivalent for warnings?
Eg:
Warning: Null value is eliminated by an aggregate or other SET operation.
If I'm expecting these errors, it helps to sift the real errors from the chaff in a big script.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅设置 ANSI_WARNINGS {ON |关闭}
See SET ANSI_WARNINGS {ON | OFF}