vote up 12 vote down star
4

Inspired by this question where there are differing views on SET NOCOUNT...

General accepted best practice (I thought until this question) is to use SET NOCOUNT ON in triggers and stored procedures in SQL Server. We use it everywhere and a quick google shows plenty of SQL Server MVPs agreeing too.

MSDN says this can break a .net SQLDataAdapter.

Now, this means to me that the SQLDataAdapter is limited to utterly simply CRUD processing because it expects the "n rows affected" message to match. So, I can't use:

  • IF EXISTS to avoid duplicates (no rows affected message) Note: use with caution
  • WHERE NOT EXISTS (less rows then expected
  • Filter out trivial updates (eg no data actually changes)
  • Do any table access before (such as logging)
  • Hide complexity or denormlisation
  • etc

In the question marc_s (who knows his SQL stuff) says do not use it. This differs to what I think (and I regard myself as somewhat competent at SQL too).

It's possible I'm missing something (feel free to point out the obvious), but what do you folks out there think?

Note: it's been years since I saw this error because I don't use SQLDataAdapter nowadays.

Edit: More thoughts...

We have multiple clients: one may use a C# SQLDataAdaptor, another may use nHibernate from Java. These can be affected in different ways with SET NOCOUNT ON.

If you regard stored procs as methods, then it's bad form (anti-pattern) to assume some internal processing works a certain way for your own purposes.

Edit 2: a trigger breaking nHibernate question, where SET NOCOUNT ON can not be set

(and no, it's not a duplicate of this)

Edit 3: Yet more info, thanks to my MVP colleague

flag

very interesting question indeed! – marc_s Sep 27 at 15:08
Note that you do not want to use IF EXISTS to avoid duplicates because it is not thread safe. – AlexKuznetsov Sep 27 at 20:30
@AlexKuznetsov: OK, I'll change it – gbn Sep 27 at 21:01
@AlexKuznetsov: What would be a "Threadsafe" approach? Surely reads performed in the EXISTS would still be included any outstanding transaction? – AnthonyWJones Oct 14 at 13:53
SET NOCOUNT only affects the display of the "(# record(s) affected)" message, not the underlying value of @@ROWCOUNT, or the database engine itself. IF EXISTS and WHILE NOT EXISTS will work regardless. – Jeremy Seghi Oct 27 at 23:50

4 Answers

vote up 3 vote down check

Ok now I've done my research, here is the deal:

  • In TDS protocol SET NOCOUNT ON only saves 9-bytes per query, which doesn't seem that much. I used to think that "9 row(s) affected" was returned from server in plain text but it doesn't seem to be the case. It's in fact a small message packet called DONE_IN_PROC.

  • Microsoft actually encourages the use of SET NOCOUNT ON in Stored Procedures, as per the book "Improving .NET Application Performance and Scalability" (page 541). I would not base my design decisions upon SqlDataAdapter.

So I think you can stick with SET NOCOUNT ON's if the cost is less than switching to another technology. I would still consider abandoning SqlDataAdapter since you still don't know what kind of design quirk you'll encounter next.

link|flag
Indeed. I've been using SET NOCOUNT ON forever, but marc_s pointed out the limitation of SQLDataAdapter in the other question. – gbn Oct 10 at 12:26
Thanks. The bytes or size is not the issue to me, but the client has to process it. It's the SQLDataAdapter dependency that still astounds me though... – gbn Oct 11 at 6:38
I don't have any benchmarks on client processing overhead, but I guess that processing 9 bytes wouldn't be that complicated or cumbersome. – ssg Oct 11 at 13:26
(9 bytes per result set, that is) – ssg Oct 11 at 13:26
The 9 bytes is treated as 2nd result set, which still has some overhead. Anyway, thanks for the answer. – gbn Oct 11 at 17:19
show 1 more comment
vote up 1 vote down

If you're saying you might have different clients as well, there are problems with classic ADO if SET NOCOUNT is not set ON.

One I experience regularly: if a stored procedure executes a number of statements (and thus a number of "xxx rows affected" messages are returned), ADO seems not to handle this and throws the error "Cannot change the ActiveConnection property of a Recordset object which has a Command object as its source."

So I generally advocate setting it ON unless there's a really really good reason not to. you may have found the really really good reason which I need to go and read into more.

link|flag
vote up 0 vote down

Regarding the triggers breaking NHibernate, I had that experience first-hand. Basically, when NH does an UPDATE it expects certain number of rows affected. By adding SET NOCOUNT ON to the triggers you get the number of rows back to what NH expected thereby fixing the issue. So yeah, I would definitely recommend turning it off for triggers if you use NH.

Regarding the usage in SPs, it's a matter of personal preference. I had always turned the row count off, but then again, there are no real strong arguments either way.

On a different note, you should really consider moving away from SP-based architecture, then you won't even have this question.

link|flag
I disagree with moving away from stored procs. This would mean we have to have the same SQL in 2 different client code bases and trust our client coders. We're developer DBAs. And don't you mean "SET NOCOUNT *ON*"? – gbn Oct 10 at 12:57
About SP vs no-SP, it's been done to death already... ;-) – gbn Oct 10 at 13:00
vote up 2 vote down

I guess to some degree it's a DBA vs. developer issue.

As a dev mostly, I'd say don't use it unless you absolutely positively have to - because using it can break your ADO.NET code (as documented by Microsoft).

And I guess as a DBA, you'd be more on the other side - use it whenever possible unless you really must prevent it's usage.

Also, if your devs ever use the "RecordsAffected" being returned by ADO.NET's ExecuteNonQuery method call, you're in trouble if everyone uses SET NOCOUNT ON since in this case, ExecuteNonQuery will always return 0.

Also see Peter Bromberg's blog post and check out his position.

So it really boils down to who gets to set the standards :-)

Marc

link|flag
He's on about simple CRUD though: the data grid he mentions could use xml to send multiple rows to avoid round trips etc – gbn Sep 27 at 15:00
I guess if you never use SqlDataAdapters, and you never check for and rely on the "records affected" number returned by ExecuteNonQuery (e.g. if you use something like Linq-to-SQL or NHibernate), then you probably don't have any problems using SET NOCOUNT ON in all stored procs. – marc_s Sep 27 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.