I have a program on a computer and on a tablet. The program uses SQL Server Express to interact with a local database (the same information on both) from a .MDF
file. So if I plug the tablet into the PC, I have two .MDF
files that I want to synchronize.
I want both users to be able to make changes to the version on their device, then I want to get both .MDF
files and run a script that merges them.
The database has a GUID primary key, and a DateTime
of when it was last changed, so if there are conflicts, I would just take the most recent version.
How should I do this?
Or alternatively, if I'm going about this the wrong way, could you recommend an alternative way to keep the databases of these two machines synchronized without an internet connection?
Thanks in advance.