Enable SQL Server Broker taking too long

前端 未结 4 1671
广开言路
广开言路 2020-12-12 12:14

I have a Microsoft SQL server 2005 and I tried to enable Broker for my database with those T-SQL:

 SELECT name, is_broker_enabled FROM sys.databases 
 -- che         


        
4条回答
  •  借酒劲吻你
    2020-12-12 12:21

    Actually I am preferring to use NEW_BROKER ,it is working fine on all cases:

    ALTER DATABASE [dbname] SET NEW_BROKER WITH ROLLBACK IMMEDIATE;
    

提交回复
热议问题