Tagged Questions

Setting NOCOUNT ON / OFF enables or disables the message that shows the count of the number of rows affected by a Transact-SQL statement or stored procedure from being returned as part of the result set.

learn more… | top users | synonyms

11
votes
2answers
173 views

Is “No count off” necessary in a stored procedure?

I have many procedures that has set nocount on. Is it necessary to turn it off at the end of stored procedure? e.g.: create procedure DummyProc as begin set nocount on ... set nocount ...
5
votes
4answers
16k views

MS SQL: Suppress return value of stored procedure called in stored procedure

I think I have the same problem as kcrumley describes in the question "Problem calling stored procedure from another stored procedure via classic ASP". However his question does not really include an ...
4
votes
1answer
723 views

Microsoft Sync Framework clashes with Nhibernate TooManyRowsAffectedexception

We are trying to implement the Microsoft Sync Framework into our application that persists it's domain using NHibernate. One of the problems we encountered is that after the Sync Framework has ...
4
votes
5answers
1k views

What are the advantages and disadvantages of turning NOCOUNT off in SQL Server queries?

What are the advantages and disadvantages of turning NOCOUNT off in SQL Server queries?
2
votes
1answer
82 views

What are the consequences of a blanket update of stored procedures to include SET NOCOUNT ON

We have introduced a new data access framework for calling SQL Stored procedures. When calling a stored procedure that returns a recordset, we've run into problems where that stored procedure also ...
1
vote
3answers
421 views

SET NOCOUNT ON and Cursors

I have a stored proc that calls several store procs, each of which insert dummy data into a single table each. It works fine except that for each loop in the cursor a single row of results is dispayed ...
0
votes
1answer
324 views

System Triggers for Replication and the NOCOUNT option

When setting up replication in Sql Server 2008 the system creates triggers on every replicated table in order to facilitate the transfer of data to the subscribing databases. Would it be expected ...