O
OldEnough
When you create an action query in design view access provides a popup widow
that allows you to select "Current database" or another database for Append
queries and Maketable queries. However, it doesn't provide this option for
UPDATE queries.
If the two tables were local tables the SQL statement would be
Docmd.runsql "UPDATE tblsvcCall INNER JOIN tblTransSvcCall ON
tblsvcCall.OrderDetailID = tblTransSvcCall.OrderDetailID
SET tblTransSvcCall.CustomerID = [tblSvcCall].[CustomerID],
tblTransSvcCall.DateTaken = [tblSvcCall].[DateTaken];"
Can this be done using ADO for an unlinked table? Can someone suggest a
direction on how to do this. I have spent hours hunting without success. I
would appreciate any help someone could offer.
Thanks in advance for looking at this.
that allows you to select "Current database" or another database for Append
queries and Maketable queries. However, it doesn't provide this option for
UPDATE queries.
If the two tables were local tables the SQL statement would be
Docmd.runsql "UPDATE tblsvcCall INNER JOIN tblTransSvcCall ON
tblsvcCall.OrderDetailID = tblTransSvcCall.OrderDetailID
SET tblTransSvcCall.CustomerID = [tblSvcCall].[CustomerID],
tblTransSvcCall.DateTaken = [tblSvcCall].[DateTaken];"
Can this be done using ADO for an unlinked table? Can someone suggest a
direction on how to do this. I have spent hours hunting without success. I
would appreciate any help someone could offer.
Thanks in advance for looking at this.