Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
SQL

How to enable, disable and check if Service Broker is enabled on a database in SQL Server

- 14.01.22 | 24.03.26 - ErcanOPAK

The Context: SQL Server Service Broker is a powerful framework for building highly scalable, asynchronous database applications. Whether you are using Query Notifications, External Activations, or Distributed Messaging, knowing how to properly manage the Broker state is essential for any DBA or Backend Developer.

The Challenge: Simply running an ALTER DATABASE command often hangs indefinitely if there are active connections to the database. To do this like a pro, you need to manage the connection state during the transition.


1. How to Check the Service Broker Status

Before making any changes, verify the current state of your database. A value of 1 means it is enabled, and 0 means it is disabled.

-- Check Service Broker status for a specific database
SELECT name, is_broker_enabled 
FROM sys.databases 
WHERE name = 'YourDatabaseName';

2. Enabling Service Broker (The “Pro” Way)

If you try to enable the broker while users are connected, the command will wait forever. The safest method is to force a rollback of active transactions to ensure the command executes immediately:

-- Enable Service Broker and terminate active connections immediately
ALTER DATABASE [YourDatabaseName] 
SET ENABLE_BROKER 
WITH ROLLBACK IMMEDIATE;

3. Disabling Service Broker

To turn off the messaging infrastructure, use the following command. Again, WITH ROLLBACK IMMEDIATE is recommended for busy environments:

-- Disable Service Broker
ALTER DATABASE [YourDatabaseName] 
SET DISABLE_BROKER 
WITH ROLLBACK IMMEDIATE;

⚠️ Critical Note: The “Rollback Immediate” Warning

Using WITH ROLLBACK IMMEDIATE will instantly disconnect all users and roll back any uncommitted transactions. Use this only during maintenance windows or when you are certain that losing unsaved session data is acceptable.

Summary

Managing the Service Broker is straightforward once you handle the connection locking mechanism. Use sys.databases to audit your instances and always remember the ROLLBACK clause to avoid hanging processes during configuration changes.

Related posts:

SQL: Use MERGE to Upsert (Insert or Update) in One Statement

Why SELECT * Slowly Destroys Performance

How to use Replicate function for masking in SQL?

Post Views: 564

Post navigation

How to insert space in Razor Asp.Net
How to hide Youtube chat windows permanently

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

April 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
27282930  
« Mar    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (754)
  • Add Constraint to SQL Table to ensure email contains @ (578)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (564)
  • Average of all values in a column that are not zero in SQL (531)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (489)
  • Find numbers with more than two decimal places in SQL (448)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries
  • SQL: Use Window Functions for Advanced Analytical Queries
  • .NET Core: Use Background Services for Long-Running Tasks
  • .NET Core: Use Minimal APIs for Lightweight HTTP Services
  • Git: Use Cherry-Pick to Apply Specific Commits Across Branches
  • Git: Use Interactive Rebase to Clean Up Commit History Before Merge

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (950)
  • How to add default value for Entity Framework migrations for DateTime and Bool (858)
  • Get the First and Last Word from a String or Sentence in SQL (836)
  • How to select distinct rows in a datatable in C# (805)
  • How to make theater mode the default for Youtube (754)

Recent Posts

  • C#: Use Init-Only Setters for Immutable Objects After Construction
  • C#: Use Expression-Bodied Members for Concise Single-Line Methods
  • C#: Enable Nullable Reference Types to Eliminate Null Reference Exceptions
  • C#: Use Record Types for Immutable Data Objects
  • SQL: Use CTEs for Readable Complex Queries

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com