Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Anyone know how to do a transfer database from VB

Status
Not open for further replies.

bigfoot

Programmer
May 4, 1999
1,779
US
Somebody must know.... I need to copy 20 tables from xyz.mdb to abc.mdb.

There must be a way to do this????
 
Do you need to do this in code? Or is it a one time thing?
 
I need to do this in code.

I have tables in my source db and I need to create 20+ mdb's with tables in them every night for my salesmen to xfer to their laptops. Esch table is personalized for the salesperson. Not I'm using an Access 97 database to do this, but I'm getting a new server and I'd rather transfer this function to a vb app, so I don't haver to load office 97 on a win2k machine.
 
Found it:

SELECT Table1.* INTO Table2 IN 'c:\external.mdb' FROM Table1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top