Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Query on a Linked Table

Status
Not open for further replies.

goslincm

MIS
May 23, 2006
292
US
I want to join one of my linked tables to another table I created in my database. However, when I try to update the field from the Linked table over to my table, I get an "not updateable error message.

Can this type of update be done?
 
Can you post your query?

Ignorance of certain subjects is a great part of wisdom
 
UPDATE dbo_localUnitAudit INNER JOIN DelinquentAudits ON (dbo_localUnitAudit.LocalUnitCd = DelinquentAudits.LocalUnitCd) AND (dbo_localUnitAudit.LocalUnitType = DelinquentAudits.LocalUnitType) AND (dbo_localUnitAudit.FiscalYear = DelinquentAudits.FiscalYear) AND (dbo_localUnitAudit.CountyCd = DelinquentAudits.CountyCd) SET dbo_localUnitAudit.ID = [DelinquentAudits]![ID];
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top