SQL Server 2008中的提供者和订阅者,订阅者可以处理插入/删除吗?

发布于 2024-09-10 17:15:48 字数 185 浏览 6 评论 0原文

假设我做了所有需要的事情(考虑完整复制)以使服务器“A”成为提供者,服务器“B”成为订阅者,如果我想添加、删除、更新或插入数据,我可以通过以下方式做到这一点吗?连接到订阅者?

如果是,数据更改是否会自动反映在提供程序中?

我正在使用:C#、ASP.NET、Visual Studio 2008、SQL Server 2008

Assuming I did all that is needed (consider complete replication) to make server "A" the provider and server "B" the subscriber, if I want to add, delete, update, or insert data, will I be able to do that by connecting to the subscriber?

If yes, will the data change be automatically reflected in the provider?

I am using: C#, ASP.NET, Visual Studio 2008, SQL Server 2008

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

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

发布评论

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

评论(1

莫多说 2024-09-17 17:15:48

基于SSMS的复制向导,取决于您的配置:

快照发布:
发布者按计划的时间间隔向订阅者发送已发布数据的快照。

交易发布:
发布者在收到已发布数据的初始快照后将事务流式传输到订阅者。

具有可更新订阅的交易出版物:
在 SQL Server 订阅者收到已发布数据的初始快照后,发布者将事务流式传输到 SQL Server 订阅者。源自订阅者的交易将应用于发布者。

合并发布:
订阅者收到已发布数据的初始快照后,发布者和订阅者可以独立更新已发布的数据。更改会定期合并。 Microsoft SQL Server Compact Edition 只能订阅合并发布。

看起来最后两个选项支持您的需要。我刚才根本无法运行复制,所以无法对其进行测试。

Based on the replication wizard of SSMS, it depends on your configuration:

Snapshot publication:
The Publisher sends a snapshot of the published data to Subscribers at scheduled intervals.

Transactional publication:
The Publisher streams transactions to the Subscribers after they receive an initial snapshot of the published data.

Transactional publication with updatable subscriptions:
The Publisher streams transactions to SQL Server Subscribers after they receive an initial snapshot of the published data. Transactions originating at the Subscriber are applied at the Publisher.

Merge publication:
The Publisher and Subscribers can update the published data independently after the Subscribers receive an initial snapshot of the published data. Changes are merged periodically. Microsoft SQL Server Compact Edition can only subscribe to merge publications.

It looks like the last two options support what you need. I haven't been able to get replication running at all just now, so I haven't been able to test it.

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