PDA

View Full Version : Data Transfer Between MDB


svnpradeep
01-02-02, 03:36
How transfer data present in one MDB to another MDB when both the MDB are of same design

BrendtHess
01-04-02, 21:22
These are the two methods I prefer:

(1) Link the tables from one database to another, and do a standard INSERT query, or
(2) Use the IN clause in your SQL Statement, e.g.:

INSERT INTO [MyTable] In "C:\MyData\MyDB.MDB"
SELECT * From MyTable