I have 2 databases that have approximately 9000 records each. The share a number of common fields. I need to move the addresses in the first database into the address field of the corresonding record in the second database. Thanks!
How do I merge 2 databases that have a number of duplicate enteries
Collapse
X
-
I would do it in vba using dao recordsets.Originally posted by SLGTPAI have 2 databases that have approximately 9000 records each. The share a number of common fields. I need to move the addresses in the first database into the address field of the corresonding record in the second database. Thanks! -
This will work much better if you can post the meta-data (info about the layout / structure) of the table in the same way as I use in my example. Click on the Reply button and you will have access to all the codes I've used. PK & FK stand for Primary Key & Foreign Key respectively. Never use TABs in this as the layout gets mucked up. Use spaces and all is fine.
Table Name=[tblStudent]
Code:[I]Field Type IndexInfo[/I] StudentID AutoNumber PK Family String FK Name String University String FK Mark Numeric LastAttendance Date/Time
Comment
Comment