Hi @db042190 ,
arent row versions always supposed to be increasing?
Yes.The rowversion data type is an incrementing number.
And you should note this : Duplicate rowversion values can be generated by using the SELECT INTO statement in which a rowversion column is in the SELECT list. We do not recommend using rowversion in this manner.
is it possible someone ran something that reset them?
No. It is not possible to reset them. Because they are generated automatically by rowversion counter.
Quote from rowversion-transact-sql
It is a data type that exposes automatically generated, unique binary numbers within a database. rowversion is generally used as a mechanism for version-stamping table rows. The storage size is 8 bytes. The rowversion data type is just an incrementing number and does not preserve a date or a time.
BR,
Mia
If the answer is helpful, please click "Accept Answer" and upvote it.