PDA

Click to See Complete Forum and Search --> : Access 2000 to access 97


hcleo
Mar 25th, 2000, 01:06 AM
How can i tranfer some data from a access 2000 db to a access 97 db?

pardede
Mar 25th, 2000, 03:48 AM
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

JHausmann
Mar 25th, 2000, 05:05 AM
Would need to link the table first...

Clunietp
Mar 26th, 2000, 01:35 AM
Or use two ADO connections, get a recordset from your A2K db, and execute INSERT SQL statements via your A97 connection....