I have two different SQL Server 2000 servers. Both are running the same version of SQL Server. I have the same jobs on both of them. All the jobs begin with SET NOCOUNT ON. The jobs on one server (call it SQLA) run fine and return the results without the rowcount at the end. The jobs on the other server (call it SQLB) run fine, except they return the results WITH the rowcount at the end. As I said, it's the same jobs on both machines - I copied them from one (SQLA where they work) to the other (SQLB where they keep giving the rowcount).
By the way, by rowcount I mean that line that says:
(10 row(s) affected)
This is really frustrating me......I checked the queries for typos, but there aren't any - SET NOCOUNT ON is pretty easy to type.
One other thing, if I run the query in QA I don't get the rowcount when I use SET NOCOUNT ON.
-SQLBill
By the way, by rowcount I mean that line that says:
(10 row(s) affected)
This is really frustrating me......I checked the queries for typos, but there aren't any - SET NOCOUNT ON is pretty easy to type.
One other thing, if I run the query in QA I don't get the rowcount when I use SET NOCOUNT ON.
-SQLBill