如何同步两个不同数据库中两个表之间的数据
假设我有两个 sql server 数据库并且具有相同的架构。我想在这两个数据库的两个表之间同步数据。
我怎么能这样做呢?是否有任何免费的开源优秀库可以帮助我开发此类应用程序,或者是否有任何已经免费的 dotnet 应用程序可以完成该任务?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用的是 Sql Server,您还可以选择使用 Sql Server 复制。
If it is Sql Server that you are using you also have the option of using Sql Server Replication.
查看SQL Server 复制。可以仅复制数据库的一部分或整个数据库。
Take a look at SQL Server Replication. It is possible to replicate only parts of the database or the database as a whole.
它们是否需要 24/7 同步,或者隔夜同步是否可以接受?
Do they need to be synchronized 24/7 or is overnight Synchronization acceptable?