hello everybody.... just a quick question: is it possible to make sure that
2 or more people can update THE SAME record? if so... how?
thanks
Two or more people can update the same record IF they do it at
different times.
Only one person can update the same record at the same time. Think
about it: if Joe updates AmountDue to 100 at the same moment that
Janet updates AmountDue to 150, what is the correct value of
AmountDue? YOU HAVE A CONFLICT and there is no unambiguous answer. The
solution Access takes is either "optimistic locking" - in which case
the value entered by the first user gets stored, and the second user
gets a warning that the value has been changed; or "pessimistic
locking", in which case the second user simply isn't permitted to edit
the record until the first user is done.
What business problem are you trying to solve, and what provisions do
you have in mind for resolving the conflicts that will arise?
John W. Vinson[MVP]