Reputation: 34188
Suppose I have two sql server databases and having same schema. I want to synchronize data between two table of that two databases.
How could I do this? Is there any free open source good library which help me to develop this sort of apps or is there any already free dotnet apps which do the task?
Upvotes: 0
Views: 1692
Reputation: 8885
Take a look at SQL Server Replication. It is possible to replicate only parts of the database or the database as a whole.
Upvotes: 1
Reputation: 6684
If it is Sql Server that you are using you also have the option of using Sql Server Replication.
Upvotes: 1
Reputation: 1121
Do they need to be synchronized 24/7 or is overnight Synchronization acceptable?
Upvotes: 0