I am running a simple update query as follows:
UPDATE WTABLE SET CaseSel=0 WHERE TablDKey=5281.
The TablDkey column is an identity column that is also the clustering index. So, this query updates one row. However, I receive two SQL messages. As follows:
(61 row(s) affected)
(1 row(s) affected)
If I run this same query using SQL 2000, I only get the second message.
Why is this?