This is a petty question, but for me it is such a pain. Often I will write storage procedures with several requests to them. To make debugging easier, I write it like this:
print 'Some notes about query 1' select * from someTable print 'some notes about query 2' update sometable set column = null
then I get the following results:
Some notes about query 1 (8 row(s) affected) Some notes about query 2 (8 row(s) affected)
As he runs through himself, it is difficult to read. I want the results to look like this:
Some notes about query 1 (8 row(s) affected) Some notes about query 2 (8 row(s) affected)
I know his little thing, but it annoys me. Anyone have any thoughts?
Tizzyfoe
source share