In SQL Server memory optimized tables, the rowversion
data type is not allowed.
In my application I still want to be able to detect a concurrency violation where user A opens an item for edit, User B opens the same item, User A saves and User B saves without seeing user A's changes. I've used a rowversion
column for this for years. What's the recommendation for managing my own fake rowversion
column?
You didn't mention what frontend language you use, but here's a tip from my experience with c#'s datasets and the "use optimistic concurrency" option
When you download a row into a DataTable, the dt tracks the original values it downloaded:
You make an update:
The row now tracks two values, original (Jon) and current (Paul)
Sending the update back to the database, it runs a query like this:
So effectively:
This way data that has been changed/nulled/nonnulled by a foreign client can be detected
It may be simplest to use an ORM for your language, that has this facility
-
ps: Perhaps a simpler notion for this is to add an int column and a trigger to increment it. It probably doesn't sit well with most people though, to add a column that is purely for information control in this manner, rather than modelling some real world data aspect of the stored entity