Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 isql 执行存储过程时,他们可能会提供以下信息:
(return status = 0)
是否可以禁用该信息?
我已经SET NOCOUNT ON用来禁用某些部分,但这仍然存在。
SET NOCOUNT ON
您可以使用以下代码:
set proc_return_status off
请注意,您禁用了当前数据库中的所有 SP,您应该:
set proc_return_status on
然后。