maybe somebody could shed some light on my problem. I'm trying to update a table based on values from a linked text file. however it's giving me an error message saying that "Updating data in a linked table is not supported by this ISAM" but the table i'm updating is a local Access table, so i'm quite puzzled by the error message. the exact sql is this:
UPDATE tblOPS_AddressList INNER JOIN tblDDB_AcctInfo ON tblOPS_AddressList.KNumber = tblDDB_AcctInfo.Acct_Num
SET tblDDB_AcctInf
fficer_Code = [tblOPS_AddressList].[A/O]
tblOPS_AddressList is the linked text file while tblDDB_AcctInfo is a local Access file. thanks in advance.
jeff
UPDATE tblOPS_AddressList INNER JOIN tblDDB_AcctInfo ON tblOPS_AddressList.KNumber = tblDDB_AcctInfo.Acct_Num
SET tblDDB_AcctInf
tblOPS_AddressList is the linked text file while tblDDB_AcctInfo is a local Access file. thanks in advance.
jeff