Edit

Share via


How to: Deactivate Service Broker networking (Transact-SQL)

Applies to: SQL Server Azure SQL Managed Instance

Service Broker sends and receives messages over the network while any Service Broker endpoint is in the STARTED state. To deactivate Service Broker networking, drop all Service Broker endpoints.

Deactivate Service Broker networking

  • Drop all Service Broker endpoints.

Examples

USE master;
GO

DROP ENDPOINT BrokerEndpoint;
GO