How can i tranfer some data from a access 2000 db to a access 97 db?
Printable View
How can i tranfer some data from a access 2000 db to a access 97 db?
you could create an action query in the access2000 to put data in the access97 with an sql like
"insert into 97tablename in db97name
select * from 00tablename"
off course you can use a query instead of a table in the access2000
Would need to link the table first...
Or use two ADO connections, get a recordset from your A2K db, and execute INSERT SQL statements via your A97 connection....