Is there an equivalent of rowversion in SQL Server, but for a table?
问题 I am looking for something similar to rowversion but for the whole table : a unique number automatically generated that can be used to know if table has changed. Eg : SELECT TABLE_VERSION('FOO') 0x00000000000007D2 INSERT INTO FOO (...) VALUES (1, 'Hello world') SELECT TABLE_VERSION('FOO') 0x00000000000007D5 Does it exists in SQL Server ? If not, is there any alternative ? Somethings that allow to track changes on a column would be great too. I have been thinking of using HASHBYTES, but