Recordset Copy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone recommend the most optimized way to extract data from more than
one Access files to other Access file.

Currently I have more than 20 Access files, I need to execute their Queries
(all the same structure), Copy and then Paste to one Master Access file’s
Table.
 
Lucotus:

You can use the IN syntax in a database query to reference a table or query
in another database.

For example:

INSERT INTO NewTable
Select * FROM QueryRemote IN C:\myremotedatabase.mdb

You could create a looping structure to loop through all of your Access
files, specifying their location, and executing the INSERT INTO query.


--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Can anyone recommend the most optimized way to extract data from more than
one Access files to other Access file.

Currently I have more than 20 Access files, I need to execute their Queries
(all the same structure), Copy and then Paste to one Master Access file's
Table.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top