I run a frontend/backend database setup here at work. When I alter the frontend and commit it to the server my process updates a version table in both the front and back end db’s. When a user opens their front end the version number is checked. When the backend has a higher version a new copy of the front end is copied from the server to the users machine. All this works fine.
There are now 2 of us making changes to the front end and there have been occasions when the current setup has overwritten work the other is doing.
I am looking for a way to either copy only new and newly modified objects to the front end copy on the server or create a new front end copy on the server that has the latest copy of all the objects put in it, checking both the current front end and the editor’s front end.
Of course all with the press of a button.
Does anyone know of a program that will do this sort of merge or what steps do I need to do to accomplish this? I dabble a bit in very basic visual basic so maybe I can write my own program if I knew what to do.