copy table from one database to another

R

reidarT

I have 2 backend-databases and 1 front-end
I would like to copy a table from backend database 1 to backend database 2.
The unique field is an autonumber field and I need the same unique values.
If I use the copyobject method I get a linked table in backend database 2.
reidarT
 
A

Arvin Meyer [MVP]

reidarT said:
I have 2 backend-databases and 1 front-end
I would like to copy a table from backend database 1 to backend database 2.
The unique field is an autonumber field and I need the same unique values.
If I use the copyobject method I get a linked table in backend database 2.

Then add code to build a Make-Table query, or do it in SQL (Create Table)
and append the records. You can also use the TransferDatabase method, or
simply import the table using the GUI (File ... Get External Data ...
Import)
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 

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

Top