SQL Express 中通过复制实现类似镜像的功能?
我们有 2 台 SQL Express (2005) 服务器。 您可能知道,Express 版本中未启用数据库镜像,但启用了复制。 是否可以在两台服务器之间启用复制以具有某种类似镜像的功能?! 如果可能的话,可能会有哪些缺点?
We have 2 SQL Express (2005) servers.
As you probably know, database mirroring is not enabled in the Express editions, but replication is.
Would it be possible to enable replication between both servers to have some kind of mirroring-like functionality?!
What would be the possible drawbacks if it is possible at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅使用 SQL Server Express 版本您将无法实现您想要实现的目标。
我可以确认 SQL Server Express 只能作为订阅者运行,而不能作为发布者运行。
请参阅以下 MSDN 参考,特别是子标题“Publisher”下的注释
http://msdn.microsoft.com/en-us/library/ms165654(SQL.90).aspx
You will not be able to produce what you are looking to achieve using only the express Edition of SQL Server
I can confirm that SQL Server Express can only operate as a subscriber and not a publisher.
See the following MSDN reference, particularly the comments under the sub-heading "Publisher"
http://msdn.microsoft.com/en-us/library/ms165654(SQL.90).aspx
我不认为 SQL Express 可以成为复制提供者,而只能成为订阅者。
I dont think SQL Express can be a Replication provider, only a subscriber.