The main thing that is missed is that the type of the version of the line changes every time the line is updated, even if the net result is this, the line does not change.
CREATE TABLE MyTest (myKey int PRIMARY KEY ,myValue int, RV rowversion); GO INSERT INTO MyTest (myKey, myValue) VALUES (1, 0); GO INSERT INTO MyTest (myKey, myValue) VALUES (2, 0); GO select * from MyTest Go update MyTest set myValue = 0 go select * from MyTest Go
The only choice I found was to create an update trigger.
source share