I created an update query that updates data to an Oracle Table and works fine (this query was created in Access 2003). I created a different update query (now that I've been upgraded, this query was created in Access 2007, mdb format) and this one doesn't work "Operation must use an updateable query". I can do a select * on the oracle table from Access and manually update the data from within the query, but when I try change via the update query it doesn't like it. When I created the query, it automatically joined the field that had a key icon next to it to the field with the same name in the query containing the data to be used for the update, any thoughts on what else I might be missing? Data for both tables are linked in from Oracle. qryCUTOFF_HIST_GR_HISTORY is a select off of the oracle table SIPROD_CUTOFF_GR_HIST and only reason doing it this way is needed to filter the data that I want updated.
Code:
UPDATE SIPROD_CUTOFF_GR INNER JOIN qryCUTOFF_HIST_GR_HISTORY ON SIPROD_CUTOFF_GR.SORTORDER = qryCUTOFF_HIST_GR_HISTORY.sortorder SET SIPROD_CUTOFF_GR.RPT_YEAR = [qryCUTOFF_HIST_GR_HISTORY].[RPT_YEAR], SIPROD_CUTOFF_GR.CUTOFF_DT = [qryCUTOFF_HIST_GR_HISTORY].[CUTOFF_DT];