我有很多set nocount on的程序.
是否需要在存储过程结束时将其关闭?
Is it necessary to turn it off at the end of stored procedure?
例如:
create procedure DummyProc
as
begin
set nocount on
...
set nocount off
end
set nocount on 将禁用 X 行受影响. 消息 SQL 返回.在某些情况下,由于客户端执行存储过程的不良影响,此消息被抑制.
set nocount on will disable the X rows affected. message SQL returns. This message is suppressed, in some cases, due to undesired effects with the client executing the stored proc.
set nocount off 将取消此抑制.但是,set nocount on 是一个范围设置,默认情况下,无论如何离开范围时都会关闭.
set nocount off will undo this suppression. However, set nocount on is a scope setting, and by default, will be turned off when leaving the scope anyway.
现在,是否需要set nocount off?不,因为执行的任何新命令都将在不同的范围内,并且默认情况下 set nocount off 始终有效.但正如上面评论中所述,这被认为是一种很好的做法,只是明确表明该设置将在 proc 执行完成后恢复正常.
Now, is set nocount off necessary? No, as any new commands executed will be in a different scope, and by default set nocount off is always in effect. But as stated above in comments, it's considered a good practice, just to explicitly indicate that this setting will return to normal when the proc is finished executing.
这篇关于是“SET NOCOUNT OFF"吗?需要在存储过程中吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
截断时的 SQL 触发器SQL trigger on Truncate(截断时的 SQL 触发器)
具有多个可选搜索参数的 sql 搜索查询sql search query with multiple optional search parameters(具有多个可选搜索参数的 sql 搜索查询)
SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUPSQL Efficiency: WHERE IN Subquery vs. JOIN then GROUP(SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP)
使用 t-SQL 检索 XML 元素名称Retrieving XML element name using t-SQL(使用 t-SQL 检索 XML 元素名称)
在 SQL 输出中插入双引号Insert double quotes into SQL output(在 SQL 输出中插入双引号)
从 SQL SERVER 中的 CTE 中删除行Delete rows from CTE in SQL SERVER(从 SQL SERVER 中的 CTE 中删除行)