473,503 Members | 1,666 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Access Bug

Hi,

I have a weird problem, I have a database that 10 to 15 people use
daily. Very often they get an error message "Could not Update Currently
Locked" and after that they usually get stack for 10-20 minutes.

I think this is a bug but can anyone help me and tell me how to avoid
it?

Thanks

Anastassios
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #1
10 3195
TC
Why do you think it's a bug?

If any of your code is using so-called "pessimistic locking", and someone
starts editing a recrd, then goes for a coffee, then comes back 15 minutes
later & saves the record, this is exactly what *should happen*.

HTH,
TC
"Anastassios Giannaras" <an**********@yahoo.co.uk> wrote in message
news:3f*********************@news.frii.net...
Hi,

I have a weird problem, I have a database that 10 to 15 people use
daily. Very often they get an error message "Could not Update Currently
Locked" and after that they usually get stack for 10-20 minutes.

I think this is a bug but can anyone help me and tell me how to avoid
it?

Thanks

Anastassios
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #2
On Wed, 5 Nov 2003 12:28:14 +1200, "TC" <a@b.c.d> wrote:

Often reported (meaning: check with groups.google.com) that this "bug"
can occur in single-user mode as well, for example if two forms
conflict.

-Tom.

Why do you think it's a bug?

If any of your code is using so-called "pessimistic locking", and someone
starts editing a recrd, then goes for a coffee, then comes back 15 minutes
later & saves the record, this is exactly what *should happen*.

HTH,
TC
"Anastassios Giannaras" <an**********@yahoo.co.uk> wrote in message
news:3f*********************@news.frii.net...
Hi,

I have a weird problem, I have a database that 10 to 15 people use
daily. Very often they get an error message "Could not Update Currently
Locked" and after that they usually get stack for 10-20 minutes.

I think this is a bug but can anyone help me and tell me how to avoid
it?

Thanks

Anastassios
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 12 '05 #3
TC
Not disagreeing, but, if two forms try to edit records in the same data
page - and they are using pessimistic locking - the second should remain
"locked out" until the first has saved its changes - no? Why is that a
"bug"?

TC
"Tom van Stiphout" <to*****@no.spam.cox.net> wrote in message
news:ui********************************@4ax.com...
On Wed, 5 Nov 2003 12:28:14 +1200, "TC" <a@b.c.d> wrote:

Often reported (meaning: check with groups.google.com) that this "bug"
can occur in single-user mode as well, for example if two forms
conflict.

-Tom.

Why do you think it's a bug?

If any of your code is using so-called "pessimistic locking", and someone
starts editing a recrd, then goes for a coffee, then comes back 15 minuteslater & saves the record, this is exactly what *should happen*.

HTH,
TC
"Anastassios Giannaras" <an**********@yahoo.co.uk> wrote in message
news:3f*********************@news.frii.net...
Hi,

I have a weird problem, I have a database that 10 to 15 people use
daily. Very often they get an error message "Could not Update Currently
Locked" and after that they usually get stack for 10-20 minutes.

I think this is a bug but can anyone help me and tell me how to avoid
it?

Thanks

Anastassios
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #4
"TC" <a@b.c.d> wrote in message news:1068005743.906488@teuthos...
Not disagreeing, but, if two forms try to edit records in the same data
page - and they are using pessimistic locking - the second should remain
"locked out" until the first has saved its changes - no? Why is that a
"bug"?


But this can happen (at least in A2K) with No Locks set as the default and
while users are NOT editing records on the same page. I would describe
that as a bug.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 12 '05 #5
On Wed, 5 Nov 2003 14:01:12 +1200, "TC" <a@b.c.d> wrote:

I used the word "bug" in quotes. I don't for a moment think there is a
bug in this area. "Bugs" often are correlated with limited
understanding of how things work.

-Tom.

Not disagreeing, but, if two forms try to edit records in the same data
page - and they are using pessimistic locking - the second should remain
"locked out" until the first has saved its changes - no? Why is that a
"bug"?

TC

<clip>
Nov 12 '05 #6
Tom van Stiphout <to*****@no.spam.cox.net> wrote in
news:pl********************************@4ax.com:
On Wed, 5 Nov 2003 14:01:12 +1200, "TC" <a@b.c.d> wrote:

I used the word "bug" in quotes. I don't for a moment think there is a
bug in this area. "Bugs" often are correlated with limited
understanding of how things work.


Well put, Tom! Much better than I could have expressed it.

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)
Nov 12 '05 #7
But I didn't understand him, so is this a bug ? <g>.
Terry

"Lyle Fairfield" <Mi************@Invalid.Com> wrote in message
news:Xn*******************@130.133.1.4...
Tom van Stiphout <to*****@no.spam.cox.net> wrote in
news:pl********************************@4ax.com:
On Wed, 5 Nov 2003 14:01:12 +1200, "TC" <a@b.c.d> wrote:

I used the word "bug" in quotes. I don't for a moment think there is a
bug in this area. "Bugs" often are correlated with limited
understanding of how things work.


Well put, Tom! Much better than I could have expressed it.

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)

Nov 12 '05 #8


I think it's a bug because if you type "could not update, currently
locked" in the Microsoft knowledge base it reports this problem as a
bug.

http://support.microsoft.com/default...b;en-us;331594

I admit, I don't really understand all this.

The database is sitting on a server a people access it from terminals,
but noone is using the same record at the same time...

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #9
TC
But that error is unlikely to be the cause of your problems unless you are
using transactions :-)

TC
Anastassios Giannaras <an**********@yahoo.co.uk> wrote in message
news:3f*********************@news.frii.net...


I think it's a bug because if you type "could not update, currently
locked" in the Microsoft knowledge base it reports this problem as a
bug.

http://support.microsoft.com/default...b;en-us;331594

I admit, I don't really understand all this.

The database is sitting on a server a people access it from terminals,
but noone is using the same record at the same time...

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #10
Seems u are using VB and locking level is set to pessimistic locking
instead of other way round.. change this option and ur problem would be
gone with the wind.

Keyur Shah
Verizon Communications
732-423-0745

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

63
5825
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy...
13
2889
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded....
1
4318
by: Dave | last post by:
Hello NG, Regarding access-declarations and member using-declarations as used to change the access level of an inherited base member... Two things need to be considered when determining an...
13
13311
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages...
0
2944
by: Frederick Noronha \(FN\) | last post by:
---------- Forwarded message ---------- Solutions to Everyday User Interface and Programming Problems O'Reilly Releases "Access Cookbook, Second Edition" Sebastopol, CA--Neither reference book...
20
3292
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to...
64
5139
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. ...
1
3306
by: com | last post by:
Extreme Web Reports 2005 - Soft30.com The wizard scans the specified MS Access database and records information such as report names, parameters and subqueries. ......
17
4382
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting...
37
5179
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why...
0
7203
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7087
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7281
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7334
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6993
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
4675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1514
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
737
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
383
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.