I am getting the Operation must be updateable query error on a query that I wrote. I have tried amendeing the query many times with no luck. Neither table has any primary keys. The database is not in read only mode. The table I am getting the info from is a linked table from a sql server.
Any help is appreciated.
Tom
Any help is appreciated.
Tom
Code:
UPDATE dbo_rpt_dat_ARDetail
INNER JOIN PROC_RptSrc_ARDetail ON (dbo_rpt_dat_ARDetail.slid = PROC_RptSrc_ARDetail.slid) AND (dbo_rpt_dat_ARDetail.eid = PROC_RptSrc_ARDetail.eid) AND (dbo_rpt_dat_ARDetail.PatName = PROC_RptSrc_ARDetail.PatName)
AND (dbo_rpt_dat_ARDetail.aid = PROC_RptSrc_ARDetail.aid) AND (dbo_rpt_dat_ARDetail.reportmonth = PROC_RptSrc_ARDetail.monasdt) AND (dbo_rpt_dat_ARDetail.clntid = PROC_RptSrc_ARDetail.clntid)
SET PROC_RptSrc_ARDetail.arbucket = dbo_rpt_dat_ARDetail.transagebucket;