Hi everyone, I have a database and I need to share it with 4 regional offices. They won't go for a VPN so they asked that the 4 databases be merged into the master copy every three months. I know about replication but after reading up on it I think it would be to much trouble to implement/manage.
What I would like to do is simply copy and paste the records from each regional database into the master copy (there will never be duplicates). There are about 20 tables in the database. This of course leads to the problem of uniquely identifying each record in each database. I can't use an autonumber as you can't paste those records without losing the autonumber value, so I need to make a unique key made up of; A:Regional Office ID, eg Cork,Dublin Belfast and a number...so in effect I would have
CO1
CO2...for Cork records
BE1
BE2...for Belfast records, and so on.
I have a working example that I could modify (attached) but is this the best way of doing this in my instance?
I know you're not supposed to build intelligence into the database and have read some posts about keeping the unique ID values in seperate columns and making composite keys.
Could some of the more experienced developers look at my sample and tell me if I should implement it?. I know I will have to implement on every form in the database.
Thanks for any advice
What I would like to do is simply copy and paste the records from each regional database into the master copy (there will never be duplicates). There are about 20 tables in the database. This of course leads to the problem of uniquely identifying each record in each database. I can't use an autonumber as you can't paste those records without losing the autonumber value, so I need to make a unique key made up of; A:Regional Office ID, eg Cork,Dublin Belfast and a number...so in effect I would have
CO1
CO2...for Cork records
BE1
BE2...for Belfast records, and so on.
I have a working example that I could modify (attached) but is this the best way of doing this in my instance?
I know you're not supposed to build intelligence into the database and have read some posts about keeping the unique ID values in seperate columns and making composite keys.
Could some of the more experienced developers look at my sample and tell me if I should implement it?. I know I will have to implement on every form in the database.
Thanks for any advice