error!!! Operation must use an updateable query.

Z

zulu

[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.

Why do i get the message above? The system is Windows 2003 server IIS6
I am sure there is read/write permissions for Internet Guest Account user
on db folder and also mdb file!!

Is there any user type (Everyone, guest or
sth other) i must give read/write permissions? or should i give execute
permission? or full control?

what shoul i do?
 
D

Douglas J. Steele

Is this an ASP application? The account IUSR_<machine name> is what needs
the read/write/delete permission on the folder where the MDB file exists.
 
T

TC

Certain queries are not updatable. This can occur for reasons that are
nothing to do with user or file permissions. It can occur when your query is
structured in certain ways and/or uses certain keywords (eg. DISTINCT). For
example, the following query is non-updatable, regardless of user & file
permissions:

SELECT DISTINCT TheField FROM TheTable;

It sounds like you are using a non-updatable query for some action that
requires an updatable one.

HTH,
TC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top