Hi everyone,
I am trying to find a good solution to synchronize two tables on different SQL servers (SQL Server 2005 Express editions). I noticed that using Microsoft Sync Framework should be the easiest and most efficient way of doing it, but I cannot make it work... Can someone please provide a simple solution of how to do it? Thanks!
Loading
Ben ArthurPosted Aug 31, 2011, 5:55 PM
Sam HobbsPosted Aug 31, 2011, 4:43 PM
I am not as experienced with SQL as many others but you could make a temporary copy of one table into the other server and then apply updates to the one table and if you need to also update changes to the other table then you could generate a file with updates to be applied to the other table. Or you could copy both tables to a database for temporary use, then synchronize, then copy each of the two tables back. You would need to have a way to ensure that the tables are not updated during the operation.
In the worst case, you could write a simple program that opens each of the two tables using two different connections and then write the sychronization yourself. As far as I know, it is not possible to create one connection that uses two tables, each from different servers.