G
Guest
I am trying to update a field from a field on a temporary table, but I am
getting an "Operation must use an updateable query" error. I am not sure
why, as similar queries have worked before, and it doesn't seem to violate
any of the conditions in the Help file. I am working in Access 2002 with a
database file in Access 2000 format. The SQL is below. All fields are text
fields. "Key" is the primary key field for each table. Neither "Field2" has
any relationships to any other fields in the database. There are no other
users of the database. Am I missing something?
UPDATE tblOne INNER JOIN tblTemp ON tblOne.Key = tblTemp.Key SET
tblOne.Field2 = [tblTemp].[Field2];
Thanks,
John
getting an "Operation must use an updateable query" error. I am not sure
why, as similar queries have worked before, and it doesn't seem to violate
any of the conditions in the Help file. I am working in Access 2002 with a
database file in Access 2000 format. The SQL is below. All fields are text
fields. "Key" is the primary key field for each table. Neither "Field2" has
any relationships to any other fields in the database. There are no other
users of the database. Am I missing something?
UPDATE tblOne INNER JOIN tblTemp ON tblOne.Key = tblTemp.Key SET
tblOne.Field2 = [tblTemp].[Field2];
Thanks,
John