I m running the below query from ms accesss 2010 and getting error as :
"Operation must use an updateable query."
UPDATE TempTable INNER JOIN D7IP_R5EVENTS ON D7IP_R5EVENTS.EVT_CODE = TempTable.D7i_New SET TempTable.EVT_CODE = D7IP_R5EVENTS.EVT_CODE WHERE NOT TEMPTABLE.D7I_NEW IS NULL
Temptable is local table and D7IP_R5EVENTS is oracle linked server table
that i created in ms access. If i replace the linked server table (D7IP_R5EVENTS) with local table, it works fine.
"Operation must use an updateable query."
UPDATE TempTable INNER JOIN D7IP_R5EVENTS ON D7IP_R5EVENTS.EVT_CODE = TempTable.D7i_New SET TempTable.EVT_CODE = D7IP_R5EVENTS.EVT_CODE WHERE NOT TEMPTABLE.D7I_NEW IS NULL
Temptable is local table and D7IP_R5EVENTS is oracle linked server table
that i created in ms access. If i replace the linked server table (D7IP_R5EVENTS) with local table, it works fine.