From msdn
Each database has a counter that is incremented for each insert or update operation that is performed on a table that contains a rowversion column within the database.
Also
To return the current rowversion value for a database, use @@DBTS.
I have a database ( believe me it has just one table and no timestamp / rowversion fields)
But When I run select @@DBTS , I get a result as if I had a rowversion column :
(p.s. - inserting / updating - doesn't update this value) .
What is this value ?
Why Do I have it without having rowversion column ?