I was entering a lot of data on an Access database stored
on my harddrive. I did a copy and paste of that database
and put it on a shared drive so that someone else could
help me enter the information in the database. Now I have
to get these into one database. Not clear on how to do it.
Do I use replicate, import????
Thanks
It depends. Do any of your tables have Autonumbers (particularly
sequential Autonumbers), and are they used to link to other tables? If
so you're in real trouble, since the two independent databases will
have assigned DIFFERENT records the SAME autonumber, and it can be a
real mess figuring out which record is which.
It's too late for replication - this is just the situation replication
is designed to handle, but you need to replicate the database FIRST,
give each user a replica (keeping the design master safe), and
synchronize the replicas. The fields and tables that enable this are
created when you replicate the database.
If your tables are relatively simple and you're lucky, you should be
able to use File... Get External Data... Link to link to the second
database, and then run an Append query to append the records from the
other table onto the end of your table. If there is an autonumber
field (one that is NOT linked to any other tables!) then just append
everything except that field; new records will get their own new
autonumber values.
If you do have linked tables... this can be a REAL pain in the neck.
Post back with table structures if you need help.