SQL Server 和分布式数据库。怎么同步?

发布于 2024-08-29 01:46:39 字数 407 浏览 4 评论 0原文

我正在计划一个用于管理多个分布式数据库的项目,并提出如何有效同步数据的问题。

该项目将以技术开发。 NET 和 SQL Server。

公司将有一个本地数据库加载数据,其中一些数据(不是全部)应与驻留在网络上的数据库同步。同样,Web数据库也必须读取本地数据库中的数据。

基本上有一些表是“共享”的,但这不是真正的复制,在某些情况下,必须根据某些标准过滤要传输的信息。

我的问题是:我该如何处理这个问题?哪种方法最有效?

我使用链接服务器做了一些测试,它有效,但似乎不是最可靠的解决方案。有同步机制吗?还是使用网络服务更好?

我主要关心的是如何处理与 Web 数据库的连接离线的情况,也许提供一种同步机制,当数据库重新联机时该机制会变为活动状态。

关于如何解决这个问题有什么想法或建议吗?

I'm planning a project for managing multiple distributed databases and I am raising the question of how to efficiently synchronize the data.

The project will be developed with technology. NET and SQL Server.

There will be a local database in which the company will load data, some of these data (not all) should be synchronized with a database that resides on the web. Similarly, the web database have to read data in the local database.

Basically there are tables that are "shared", but this is not a true replication, in some cases the information to transfer must be filtered according to certain criteria.

My question is: How do I manage this? which is the most efficient method?

I did some test using the Linked Servers and it works, but does not seem the most reliable solution. Are there synchronization mechanisms? Or is the use of web services better?

My main concern is how to handle the scenario where the connection to the web database is offline, perhaps providing a synchronization mechanisms that become active when the database back online.

Any ideas or suggestions on how to tackle it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶ ̄淡然 2024-09-05 01:46:39

复制将是我的第一个建议。您可以在复制中创建过滤器,以便仅复制某些行,并且它可以处理离线场景。如果这对您不起作用,那么您可以查看Microsoft Sync Framework< /a>.

Replication would be my first recommendation. You can create filters in replication such that only certain rows are replicated and it can handle offline scenarios. If that did not work for you, then you might look at the Microsoft Sync Framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文