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 off
end
|
I have many procedures that has Is it necessary to turn it off at the end of stored procedure? e.g.:
|
||||
| show 2 more comments |
|
Now, is |
||||
|
|
|
only if you dont want to see
most of the time - when you debug and you use print command - so you want to see pure text of your own... so thats a good practice. editit does Not affect your query result (on or off - it doesn't matter.)- if thats what's your asking. ( thanks JNK). |
|||||||||
|
onaffect subsequent SQL", isn't it? – Tomalak Nov 21 '11 at 19:20sets done in a procedure only last inside that procedure. – GSerg Nov 21 '11 at 19:24set nocount offorset nocount on? My answer was based on the original question, but Adam later changed it -- was this based off some assumptions? Those are two totally different questions. – Jerad Rose Nov 21 '11 at 19:52