I think you've got a good tutorial, but I don't think you've discovered
anything new.
http://www.google.com/search?hl=en&q=timestamp+optimistic+%22sql+server%22
http://davidhayden.com/blog/dave/archive/2005/10/05/2503.aspx
Optimistic Concurrency Strategies
If you are in a performance state-of-mind, chances are you will go with
optimistic concurrency. Optimistic concurrency frees up database resources
as quickly as possible so that other users and processes can act upon that
data as soon as possible.
To the best of my knowledge, there are four popular strategies to dealing
with optimistic concurrency:
1.. Do Nothing.
2.. Check for changes to all fields during update.
3.. Check for changes to modified fields during update.
4.. Check for changes to timestamp ( rowversion ) during update.
I agree the N number of "OriginalThis" and "OriginalThat" is a pain is
overkill and ugly and non maintainable.
..
Start a blog, post your tutorial...then others can learn from your example.
Windows Live has free blog space.
http://sholliday.spaces.live.com/blog/
> (If I'm overlooking anything, please let me know.)
>
[quoted text clipped - 39 lines]
>
> One last question: Why have I not seen this in any tutorial?
B. Chernick - 18 Dec 2007 16:25 GMT
No argument here. But that's the problem. It's not clearly spelled out with
all the bits in one place, anywhere it might be easily found, at least
nothing that I've noticed until now. It was almost a matter of chance that I
stumbled across the right keywords and Google hit. (Doubly frustrating when
you're under a deadline and new to ASP.Net 2.0. Admittedly, you miss stuff
when you're rushing.)
So hopefully others will avoid my frustration.
> I think you've got a good tutorial, but I don't think you've discovered
> anything new.
[quoted text clipped - 70 lines]
> >
> > One last question: Why have I not seen this in any tutorial?
Scott Roberts - 18 Dec 2007 18:11 GMT
I don't think that the timestamp method is "bad", per se, but I much prefer
checking modified fields.
The problem with timestamps is that they give "false positives" - meaning
that a user may encounter a "concurrency error" when none really exists. For
example, one user changes the address and another user changes the phone
number. There is no concurrency issue there, but the timestamp method will
report one anyway.
It depends on your application requirements, how many concurrent updates you
expect to see, and how difficult it is for users to recover from concurrency
issues. The timestamp approach seems to be pretty easy to implement, and if
time is the limiting factor that they are probably the way to go.
> I think you've got a good tutorial, but I don't think you've discovered
> anything new.
[quoted text clipped - 72 lines]
>>
>> One last question: Why have I not seen this in any tutorial?
B. Chernick - 18 Dec 2007 20:10 GMT
Interesting point. In a high volume system, that might be a consideration.
I think that in my current environment (a relatively low volume system)
'false positive' would be a matter of semantics. Only one person should be
modifying any one record at any time. (Can't have managers stepping on each
other's toes.)
As you point out, application requirements decide this.
(From a personal point of view, given my experiences, I would be
uncomfortable with letting 2 different users change 2 different fields in a
record simultaneously. That just feels like trouble to me.)
> I don't think that the timestamp method is "bad", per se, but I much prefer
> checking modified fields.
[quoted text clipped - 86 lines]
> >>
> >> One last question: Why have I not seen this in any tutorial?