I don't understand why I am receiving this error when I try to run the following query:
When I try to run this query I get the error "Operation must use an updateable query." tblSancPres is a table that I created that is updateable. The ING_PRESBR_NPI is a network table for which I have read-only privileges but that shouldn't matter should it?
Code:
UPDATE tblSancPres
SET IngID = (SELECT ING_PRESBR_ID FROM ING_PRESBR_NPI WHERE ING_PRESBR_NPI.PRESBR_NPI = tblSancPres.PrescID)
WHERE EXISTS
(SELECT ING_PRESBR_ID FROM ING_PRESBR_NPI WHERE ING_PRESBR_NPI.PRESBR_NPI = tblSancPres.PrescID);
When I try to run this query I get the error "Operation must use an updateable query." tblSancPres is a table that I created that is updateable. The ING_PRESBR_NPI is a network table for which I have read-only privileges but that shouldn't matter should it?