473,394 Members | 1,828 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Suddenly Locked!!

I have an access db in which a for based on a simple query is updated
by the user. It has been being used for a year that way...now it
suddenly does not allow an update. The symptom has specific features
in that, The data cannot be updated in the query, it only beeps,
however the typical "non updateable query" message does not show
up...so it is a different problem. I changed some other code...but
should hjave been unrealted and this query in it's basic for should
work fine. It is simple a data table with one reference table linked
to it...and it has been easily updatable for a good while. I can find
no properties changed...is there any kind of status that comes to mind
I could have changed??

Please only answer the question above and try not to suggest things
outside of the above perameters as it just wastes poting time. The
query worked before and now does not.

Thanks for your thoughts.

Jeremy Smith
Nov 12 '05 #1
5 1461
And More.......

Ok...I Isolated this problem....I pulled the two tables into a new dB
and the query. I also pulled the two tables from a working production
version and the query in that version.....Same results....the first
one does not work the socnd one allows me to manually update fine.....

Every Property on the tables and query appear to be the same...but
something is locking the query from be able to update...still no
"non-updatable" message.

Thanks

Jeremy SMith

jm*****@bmi.com (Jeremy) wrote in message news:<c2**************************@posting.google. com>...
I have an access db in which a for based on a simple query is updated
by the user. It has been being used for a year that way...now it
suddenly does not allow an update. The symptom has specific features
in that, The data cannot be updated in the query, it only beeps,
however the typical "non updateable query" message does not show
up...so it is a different problem. I changed some other code...but
should hjave been unrealted and this query in it's basic for should
work fine. It is simple a data table with one reference table linked
to it...and it has been easily updatable for a good while. I can find
no properties changed...is there any kind of status that comes to mind
I could have changed??

Please only answer the question above and try not to suggest things
outside of the above perameters as it just wastes poting time. The
query worked before and now does not.

Thanks for your thoughts.

Jeremy Smith

Nov 12 '05 #2
You are likely to get better guidance if you post the SQL.

mike

On 20 Apr 2004 13:53:40 -0700, jm*****@bmi.com (Jeremy) wrote:
And More.......

Ok...I Isolated this problem....I pulled the two tables into a new dB
and the query. I also pulled the two tables from a working production
version and the query in that version.....Same results....the first
one does not work the socnd one allows me to manually update fine.....

Every Property on the tables and query appear to be the same...but
something is locking the query from be able to update...still no
"non-updatable" message.

Thanks

Jeremy SMith

jm*****@bmi.com (Jeremy) wrote in message news:<c2**************************@posting.google. com>...
I have an access db in which a for based on a simple query is updated
by the user. It has been being used for a year that way...now it
suddenly does not allow an update. The symptom has specific features
in that, The data cannot be updated in the query, it only beeps,
however the typical "non updateable query" message does not show
up...so it is a different problem. I changed some other code...but
should hjave been unrealted and this query in it's basic for should
work fine. It is simple a data table with one reference table linked
to it...and it has been easily updatable for a good while. I can find
no properties changed...is there any kind of status that comes to mind
I could have changed??

Please only answer the question above and try not to suggest things
outside of the above perameters as it just wastes poting time. The
query worked before and now does not.

Thanks for your thoughts.

Jeremy Smith


Nov 12 '05 #3
Glad to offer it...although I don't believe the SQL is the
problem...since it's two exactly same statements one that works and
one that doesn't....everything appears to be identical.

SELECT TBL_TSK_QRT_EVENT.QRTE_TASKQUARTER,
TBL_TSK_QRT_EVENT.QRTE_COIDLINK, TBL_TSK_QRT_EVENT.QRTE_COMPLETE,
TBL_TSK_QRT_EVENT.QRTE_USER, TBL_TSK_QRT_EVENT.QRTE_COMPLETEDATE,
TBL_TSK_EVENTDRIVEN.EVT_ID, TBL_TSK_EVENTDRIVEN.EVT_EVENTNAME
FROM TBL_TSK_QRT_EVENT INNER JOIN TBL_TSK_EVENTDRIVEN ON
TBL_TSK_QRT_EVENT.QRTE_TASKLINK = TBL_TSK_EVENTDRIVEN.EVT_ID
ORDER BY TBL_TSK_QRT_EVENT.QRTE_COMPLETEDATE;
thanks

js
mb**************@pacbell.net (Mike Preston) wrote in message news:<40****************@news.INDIVIDUAL.NET>...
You are likely to get better guidance if you post the SQL.

mike

On 20 Apr 2004 13:53:40 -0700, jm*****@bmi.com (Jeremy) wrote:
And More.......

Ok...I Isolated this problem....I pulled the two tables into a new dB
and the query. I also pulled the two tables from a working production
version and the query in that version.....Same results....the first
one does not work the socnd one allows me to manually update fine.....

Every Property on the tables and query appear to be the same...but
something is locking the query from be able to update...still no
"non-updatable" message.

Thanks

Jeremy SMith

jm*****@bmi.com (Jeremy) wrote in message news:<c2**************************@posting.google. com>...
I have an access db in which a for based on a simple query is updated
by the user. It has been being used for a year that way...now it
suddenly does not allow an update. The symptom has specific features
in that, The data cannot be updated in the query, it only beeps,
however the typical "non updateable query" message does not show
up...so it is a different problem. I changed some other code...but
should hjave been unrealted and this query in it's basic for should
work fine. It is simple a data table with one reference table linked
to it...and it has been easily updatable for a good while. I can find
no properties changed...is there any kind of status that comes to mind
I could have changed??

Please only answer the question above and try not to suggest things
outside of the above perameters as it just wastes poting time. The
query worked before and now does not.

Thanks for your thoughts.

Jeremy Smith

Nov 12 '05 #4
It sounds like there is a dependency that is not working.

That would certainly explain why a brand new mdb with merely these two
tables and this query would also stop working.

In the production app are any of the fields being selected themselves
referenced in the relationships documentation by yet a third table?

Just grasping here.

mike
On 21 Apr 2004 07:03:55 -0700, jm*****@bmi.com (Jeremy) wrote:
Glad to offer it...although I don't believe the SQL is the
problem...since it's two exactly same statements one that works and
one that doesn't....everything appears to be identical.

SELECT TBL_TSK_QRT_EVENT.QRTE_TASKQUARTER,
TBL_TSK_QRT_EVENT.QRTE_COIDLINK, TBL_TSK_QRT_EVENT.QRTE_COMPLETE,
TBL_TSK_QRT_EVENT.QRTE_USER, TBL_TSK_QRT_EVENT.QRTE_COMPLETEDATE,
TBL_TSK_EVENTDRIVEN.EVT_ID, TBL_TSK_EVENTDRIVEN.EVT_EVENTNAME
FROM TBL_TSK_QRT_EVENT INNER JOIN TBL_TSK_EVENTDRIVEN ON
TBL_TSK_QRT_EVENT.QRTE_TASKLINK = TBL_TSK_EVENTDRIVEN.EVT_ID
ORDER BY TBL_TSK_QRT_EVENT.QRTE_COMPLETEDATE;
thanks

js
mb**************@pacbell.net (Mike Preston) wrote in message news:<40****************@news.INDIVIDUAL.NET>...
You are likely to get better guidance if you post the SQL.

mike

On 20 Apr 2004 13:53:40 -0700, jm*****@bmi.com (Jeremy) wrote:
>And More.......
>
>Ok...I Isolated this problem....I pulled the two tables into a new dB
>and the query. I also pulled the two tables from a working production
>version and the query in that version.....Same results....the first
>one does not work the socnd one allows me to manually update fine.....
>
>Every Property on the tables and query appear to be the same...but
>something is locking the query from be able to update...still no
>"non-updatable" message.
>
>Thanks
>
>Jeremy SMith
>
>
>
>jm*****@bmi.com (Jeremy) wrote in message news:<c2**************************@posting.google. com>...
>> I have an access db in which a for based on a simple query is updated
>> by the user. It has been being used for a year that way...now it
>> suddenly does not allow an update. The symptom has specific features
>> in that, The data cannot be updated in the query, it only beeps,
>> however the typical "non updateable query" message does not show
>> up...so it is a different problem. I changed some other code...but
>> should hjave been unrealted and this query in it's basic for should
>> work fine. It is simple a data table with one reference table linked
>> to it...and it has been easily updatable for a good while. I can find
>> no properties changed...is there any kind of status that comes to mind
>> I could have changed??
>>
>> Please only answer the question above and try not to suggest things
>> outside of the above perameters as it just wastes poting time. The
>> query worked before and now does not.
>>
>> Thanks for your thoughts.
>>
>> Jeremy Smith


Nov 12 '05 #5
> > >jm*****@bmi.com (Jeremy) wrote in message news:<c2**************************@posting.google. com>...
> I have an access db in which a for based on a simple query is updated
> by the user. It has been being used for a year that way...now it
> suddenly does not allow an update. The symptom has specific features
> in that, The data cannot be updated in the query, it only beeps,
> however the typical "non updateable query" message does not show
> up...so it is a different problem. I changed some other code...but
> should hjave been unrealted and this query in it's basic for should
> work fine. It is simple a data table with one reference table linked
> to it...and it has been easily updatable for a good while. I can find
> no properties changed...is there any kind of status that comes to mind
> I could have changed??
>
> Please only answer the question above and try not to suggest things
> outside of the above perameters as it just wastes poting time. The
> query worked before and now does not.
>
> Thanks for your thoughts.
>
> Jeremy Smith


I just had a similar problem a few weeks ago - I found that I had lost
one of my primary keys in a table - check that (and your relationship
table) to see if it helps.
Nov 12 '05 #6

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

Similar topics

5
by: Jeremy | last post by:
I have an access db in which a for based on a simple query is updated by the user. It has been being used for a year that way...now it suddenly does not allow an update. The symptom has specific...
6
by: DebbieG | last post by:
I have created a database for a client and was told that it was to be a one-user database. Well, you know the next statement ... now they want 3 people to be able to use the database. (FYI, I...
2
by: Ken Durden | last post by:
I'm setting up an interface where clients must perform external locking before calling certain commands. I do this to force them to specify the duration the action they performed must persist...
0
by: Paul Sampson | last post by:
Does anyone know why VS.NET 2003 would suddenly set the Locked property to True for each and every control in my application? On another tangent, is there a bugfix for the mysterious TabControl...
7
by: Andrea Moro | last post by:
I'm writing my first windows control library. A simple textbox with some numeric facilities. Well, there is a strange thing that happen. I want to add a locked property. As many other property,...
2
by: PeteCresswell | last post by:
I've been changing my apps to be compliant with MS's standard of writing temp data only to C:\Documents And Settings\.... But now I'm converting an app that creates .TXT files and spreadsheets...
1
by: Ed | last post by:
I have MS Access 2000 (no other versions involved) and can't open my Modules. Clicking on a Module gives me a "Project Locked", "Project is unviewable" message. I've never password protected my...
8
by: kevin.vaughan | last post by:
Good Afternoon Everyone, Could someone please explain why I can't set the Subform control Visible attribute to False as below? The statement for the locked attributes work but not for the...
6
by: ljstern | last post by:
Hello. I am using MS Access 2003 with XP/pro. I have a form that has the following properties set through the property sheet: form: AllowAdditions = False CartridgeID field: Locked = True ...
2
truthlover
by: truthlover | last post by:
The database I created went live Monday and twice a very bizzare thing has happened -- for no reason we have been able to figure out, the DB will suddenly started requiring a password that was never...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.