I am getting this error from an update query I just created. Could someone tell what causes this error? Any help with this matter is greatly appreciated. The table I am getting the information from (dbo_rpt_dat_ARDetail) is a linked table the table I am trying to update (calc_Compare) is an access table. Tom
Code:
UPDATE dbo_rpt_dat_ARDetail INNER JOIN calc_Compare ON (dbo_rpt_dat_ARDetail.slid = calc_Compare.SLID) AND (dbo_rpt_dat_ARDetail.eid = calc_Compare.EncID) AND (dbo_rpt_dat_ARDetail.aid = calc_Compare.AID) SET calc_Compare.AcctName = [dbo_rpt_dat_ARDetail].[PatName]
WHERE (((calc_Compare.AID)=267658));