I've been trying to come up with a way to update databases across three different locations in an automated fashion. I can't use a linked backend because our networks are currently overloaded so adding and accessing records takes way too long. I looked into replication but everything I read and heard said that replication can be a nightmare.
So here's what I'm thinking, please feel free to shoot as many holes in this as possible.
The database contains license information for technicians and pharmacists that work for my company. The two main tables are EmpTable and LicTable. We have sites in three locations that are abbreviated CB, CA, and OP. So what I am thinking of doing is creating three backends with tables named like CAEmpTable, CBEmptable, etc. Each table would have a column that would store the date any record was last modified.
Whenever a user opens the database, I would have a form that runs and would check a table to see when the last update happened. I only need to update once a week so when the form checks the field, it will automatically run an append query to combine the tables.
I haven't quite worked out all the details but from your experience, do you think this would work? What would be the downfalls?
I would greatly appreciate your input.
So here's what I'm thinking, please feel free to shoot as many holes in this as possible.
The database contains license information for technicians and pharmacists that work for my company. The two main tables are EmpTable and LicTable. We have sites in three locations that are abbreviated CB, CA, and OP. So what I am thinking of doing is creating three backends with tables named like CAEmpTable, CBEmptable, etc. Each table would have a column that would store the date any record was last modified.
Whenever a user opens the database, I would have a form that runs and would check a table to see when the last update happened. I only need to update once a week so when the form checks the field, it will automatically run an append query to combine the tables.
I haven't quite worked out all the details but from your experience, do you think this would work? What would be the downfalls?
I would greatly appreciate your input.