Enable Service Broker in SQL Server

Following code snippet useful to enabled the service broker in sql server
  1. Alter Database "YourDataBaseName" SET ENABLE_BROKER; 
After running the preceding code snippet , it will enable the service broker on specified database.