Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Queries / April 2008

Tip: Looking for answers? Try searching our database.

Updateing multiple tables

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
B+ve - 23 Apr 2008 06:25 GMT
How can I update multiple tables (3) from one linked Excel file.  The update
query seems to be designed to only handle one destination table.
Signature

Be positive

John Spencer - 23 Apr 2008 17:33 GMT
Probably you need to run three update queries.  However, if the three tables
are related and you can create an updatable select query on the three tables
and the Excel file, you may be able to update them all at once.

This trivial example updates two tables at once

UPDATE FAQ_BU  INNER JOIN FAQ0
ON FAQ_BU.fID = FAQ0.fID
SET FAQ_BU.fSubject = [FAQ0].[fSubject]
, FAQ0.fSubject = [FAQ_BU].[fSubject];

John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County

> How can I update multiple tables (3) from one linked Excel file.  The update
> query seems to be designed to only handle one destination table.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.