Create local copy of linked tables

  • Thread starter Thread starter arod
  • Start date Start date
A

arod

I have a database that contains a bunch of linked tables that I want to
make changes to the data on. However before I apply my queries to the
linked tables I would like to test them first by running them on a
separate copy of the tables.

Is there a way that I can import linked tables (data and structure)?
Everytime I try to do it I just get another linked table. But I want a
completely separate copy.
 
I wouldn't import them. I'd make a second physical copy of the database
where the linked tables reside and then using the Linked Table Manager, link
the tables to this test database. Run your queries and verify the data,
then link them back to the original database.

--
--Roger Carlson
MS Access MVP
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
 
How are you trying to do it? If you just copy a linked table, you get
another linked table. Try using a Make Table Query instead:

SELECT LinkedTableName.* INTO CopiedTableName
FROM LinkedTableName;

-Michael
 

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