码迷,mamicode.com
首页 > 数据库 > 详细

The SQL Server Service Broker for the current database is not enabled

时间:2016-10-24 23:54:18      阅读:468      评论:0      收藏:0      [点我收藏+]

标签:ini   数据   方法   click   database   this   play   sql语句   isa   

把一个数据恢复至另一个服务器上,出现了一个异常:

The SQL Server Service Broker for the current database is not enabled, and as a result query notifications are not supported.  Please enable the Service Broker for this database if you wish to use notifications.

截图如下:
技术分享

 

解决方法:
技术分享


参考上面的步骤,可以设置为True。
但是,你也许没有那么顺利,当你点击"OK"铵钮时,会现另外一个异常:
技术分享

 

那怎样解决呢?没有关系,可以在SQL查询分析器中执行SQL语句:
技术分享

 

技术分享
DECLARE @DBName SYSNAME

SET @DBName = Tutorial  --‘Your DB Name‘

DECLARE @spid INT
SELECT @spid = MIN(spid) FROM [MASTER].[dbo].[sysprocesses] WHERE dbid = DB_ID(@DBName)
WHILE @spid IS NOT NULL
BEGIN
    EXECUTE (KILL  + @spid)
    SELECT @spid = MIN(spid)  FROM [MASTER].[dbo].[sysprocesses] WHERE dbid = DB_ID(@DBName) AND spid > @spid
END

EXECUTE(ALTER DATABASE + @DBName + SET ENABLE_BROKER)   --DISABLE_BROKER
Source Code

 

The SQL Server Service Broker for the current database is not enabled

标签:ini   数据   方法   click   database   this   play   sql语句   isa   

原文地址:http://www.cnblogs.com/insus/p/5994734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!