Hi all!
I have a question regarding the message “Must use an updateable query.”
I built a very simple update query from two tables. The table I am updating is local, the table I’m using to update it is in DB2. Simple join between the two. Select query is successful, no problems. But when I try to run the update query, I keep getting the message “Must use an updateable query.” I have other update queries that are more complex than this, but all were written before we upgraded to Access 2003.
I know I can do this in code, but the db is shared, and other people don’t understand the code I write and get upset with me when I do stuff that way, so I’m trying not to. I made sure the database isn’t corrupt, and after not succeeding when other people were logged in, I waited until everyone was out to run the query, still with no success.
Any ideas?
Sample of the query I’m using:
UPDATE tblMyTable INNER JOIN DB2_TABLE ON tblMyTable.RecordID = DB2_TABLE.RECORDID SET tblMyTable.SpecialCode = Trim([DB2_SPECIAL_CODE]) WHERE (((DB2_TABLE.DB2_SPECIAL_CODE)””));