Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
SQL Server
Azure SQL Managed Instance
Service Broker sends and receives messages over the network while any endpoint for Service Broker is in the STARTED
state. To resume Service Broker networking, alter the endpoints to set the state to STARTED
.
Note
Activating Service Broker networking allows Service Broker to send and receive messages over the network. The authentication level set on the endpoint controls which network connections the endpoint accepts. For more information on Service Broker networking and security, see Security Overview (Service Broker).
Resume Service Broker networking
- Alter an endpoint to set the state to
STARTED
.
Examples
USE master;
GO
ALTER ENDPOINT BrokerEndpoint
STATE = STARTED;
GO