vote up 1 vote down star
1

Would you rather use a version number (that will increment) or a timestamp to check for concurrency problems?

flag

5 Answers

vote up 3 vote down check

Version number is better because no matter what format of time you use, it can still be thrown off if the server's clock is wrong or becomes wrong over time.

I have to admit, I've used a time stamp in many databases because it can serve a dual purpose of concurrency checking as well as readability for when the data was last changed. However, using a version number is really the better way to go.

link|flag
Yes, idd, I already have a column ModifiedOn and was thinking of using that, but you would recommend an extra column? – Lieven Cardoen Nov 6 at 13:42
Yes. As much as I hate having a lot of columns in a table, it is the more bulletproof solution. – NYSystemsAnalyst Nov 6 at 20:44
Well, I'm a bit confused because of Jim's answer. If TimeStamp changes automatically when modifying the row, then that's quite usefull. What do you mean by 'it can still be thrown off'? thx – Lieven Cardoen Nov 7 at 12:45
The timestamp datatype Jim is referring to is somewhat of a misnomer. SQL Server has a datatype called timestamp. However, it has nothing to do with actual time -- it is really a self-incrementing version number. Each time a row is updated, the timestamp number is automatically changed. In SQL 2008, timestamp has been replaced by rowversion (msdn.microsoft.com/en-us/library/…), which makes much more sense. – NYSystemsAnalyst Nov 9 at 14:08
I think you'll find I had mentioned that "Despite its description it doesn't really have anything to do the date and time" – Jim Nov 11 at 16:05
vote up 1 vote down

Version number. Or if I'm using timestamp, I'll make sure it is UTC - so there is no confusion with the timezone.

link|flag
vote up 3 vote down

I'd use a version number, particularly if the resource may ever be updated more than the resolution of your timestamps (e.g. if you're storing timestamps to a resolution of seconds, if you have multiple updates within a single second, your versioning will break).

link|flag
vote up 1 vote down

Lieven,

I know you didn't specify SQL Server, but IF you are talking about SQL Server then the datatype TimeStamp would be the best method to use. Despite its description it doesn't really have anything to do the date and time. It's actually just a binary number which changes every time the row has been modified. Thus, if any amendments are made to the row then you kno the timestamp column will change. This has the advantage over version numbers because you, the programmer, do not have to "maintain" the version number. Actual Date/Time timestamps need to be used more carefully as another poster referred to earlier - time differences etc.

link|flag
And to which type do I need to map timestamp in C#? Because before an update or delete I want to check for concurrency problems. (I am working with sql server indeed. Flex-WebORB-.NET-SQLServer). We're sending dto's to Flex. In that dto I'll need to put the timestamp. Whenever the dto returns to be saved, I'll need to chack if the timestamp in the dto corresponds to timestamp in database. Thx. – Lieven Cardoen Nov 6 at 14:30
Here's some chat about it: social.msdn.microsoft.com/Forums/en-US/… However, have you considered allowing the server to handle versions? If you're using optimistic locking then it would be your sql insert that would detect a problem and throw the exception. – Jim Nov 6 at 14:40
I was going to do that, letting the sql insert detect the problem. But you do need to send the timestamp to the client or not? If you're inserting you need to compare the timestamp in db with the timestamp in the object. Or am I missing something here? – Lieven Cardoen Nov 6 at 14:48
Sorry, yes my mistake!!! – Jim Nov 6 at 14:49
I'm confused now because of NYSystemAnalyst's answer. Can something go wrong with this TimeStamp? – Lieven Cardoen Nov 7 at 12:46
show 1 more comment
vote up 0 vote down

If you are on Windows, I recommend to use a globally unique identifier (GUID) as the version identifier.

A timestamp (even if UTC) can make problems if the clock is set by the user. An incrementing number (if hold in memory) can make problems if the server application is restarted, or if it overflows (if it's only a 16-bit or 32-bit integer).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.