We have a small problem that I am trying to think through the solution to and could use some help. We have a db split on our network that runs fine (albeit a bit slow) which is fine for people in our main office. We also have Reps out in the field that could access the db on our network, but it moves so slow that it literally freezes up their computer.
I was wanting to create a local copy of the db (or really, just two of the tables) and then append to the exisitng network db whenever that Rep comes into the main office (once a month). A couple of problems:
1. How do I keep the autonumber from creating the same ID in the real db and the local copy?
2. The second table is related on the autonumber ID with a one-to-many relationship. If the ID of the original record (in the local db) changed, it would affect this table's data as well.
Any thoughts on how to approach this? All help/opinions are definitely appreciated!
I was wanting to create a local copy of the db (or really, just two of the tables) and then append to the exisitng network db whenever that Rep comes into the main office (once a month). A couple of problems:
1. How do I keep the autonumber from creating the same ID in the real db and the local copy?
2. The second table is related on the autonumber ID with a one-to-many relationship. If the ID of the original record (in the local db) changed, it would affect this table's data as well.
Any thoughts on how to approach this? All help/opinions are definitely appreciated!