Tuesday 24 April 2018

MSSQL – Enabling “Service Broker protocol” for a DB

MSSQL – Enabling “Service Broker protocol” for a DB


To determine whether or not Service Broker is enabled for a particular database, execute the following T-SQL:
SELECT is_broker_enabled FROM sys.databases WHERE name = ‘Database name’;
— Enable Service Broker:
ALTER DATABASE [Database Name] SET ENABLE_BROKER; Read more...

No comments:

Post a Comment