如何禁用发布和分发?
我在禁用发布和分发时收到以下错误。请告诉我如何禁用发布和分发?
SQL Server 无法禁用 出版和发行 “服务器”。
执行时发生异常 Transact-SQL 语句或批处理。 (Microsoft.SqlServer.ConnectionInfo)
尚未安装分发器 正确。无法禁用数据库 用于发布。更改数据库 上下文为“master”。 (微软 SQL 服务器,错误:20029)
I'm getting the following error while disabling publishing and distribution. Plz, tell me how to do disable publishing and distribution?
SQL Server could not disable
publishing and distribution on
'server'.An exception occurred while executing
a Transact-SQL statement or batch.
(Microsoft.SqlServer.ConnectionInfo)The Distributor has not been installed
correctly. Could not disable database
for publishing. Changed database
context to 'master'. (Microsoft SQL
Server, Error: 20029)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我执行了以下查询
sp_removedbreplication @dbname = N'fxDb2'
它对我有用..谢谢
I executed the following query
sp_removedbreplication @dbname = N'fxDb2'
It worked for me.. Thanks