By: Basit Farooq | Updated: 2012-10-24 | Comments (14) | Related: > Service Broker
Problem
The SQL Server Database Engine returns the following error message after a service broker enabled database is restored to the same SQL Server instance with a different database name and the T-SQL command (ALTER DATABASE 'DatabaseName' SET ENABLE_BROKER) is issued to enable the Service Broker for this restored database.
The Service Broker in database "DatabaseName" cannot be enabled because there is already an enabled Service Broker with the same ID.
Msg 5069, Level 16, State 1, Line 1
ALTER DATABASE statement failed.
Solution
This error happens when a Service Broker enabled database is restored or copied to the same SQL Server instance where the original database resides, as a result, both databases end up having the same Service Broker identifier. When we try to enable Service Broker for the restored database, we will receive this error message. Obviously, this also causes conflicts and existing service broker applications get disturbed.
As you may know, each database on a SQL Server instance contains a Service Broker identifier, which is used by a Service Broker application to uniquely identify the Service Broker instance on the network. This unique identifier also helps the Service Broker application to correctly route and deliver the Service Broker messages to the correct instance of SQL Server. The "service_broker_guid" column of sys.databases catalog view returns this unique identifier value for each database on SQL Server.
For example, when I restored a copy of AdventureWorks2012 database as AdventureWorks2012QA on the same instance where AdventureWorks2012 resides, after the restore both databases end up having the same broker identifier (See below):
USE [master] GO SELECT [name] ,[is_broker_enabled] ,[service_broker_guid] FROM [sys].[databases] GO
As can be noticed from above, Service Broker is disabled on AdventureWorks2012QA database after the restore.
When I tried to enable enable Service Broker on AdventureWorks2012QA database using "ALTER DATABASE [AdventureWorks2012QA] SET ENABLE_BROKER" T-SQL statement, I get the below error:
How to fix this issue?
The only way to fix this error is to reinitialize the Service Broker identifier. You can do this as follow:
USE [master] GO ALTER DATABASE [DatabaseName] SET NEW_BROKER GO
This statement performs the following actions, upon execution:
- Enables Service Broker for the database
- Assigns the new Service Broker identifier to the database
- Clears any existing messages from the Service Broker queue for this database
For example, I executed this statement to enable Service Broker for the AdventureWorks2012QA database as follow:
After performing this, if you query the sys.databases catalog again, you'll notice that Service Broker is enabled and a new Service Broker identifier is specified for the database. See below for our example:
As you can see from the above, after executing the ALTER DATABASE statement, the new Service Broker identifier is assigned, and Service Broker is enabled for the AdventureWorks2012QA database.
Next Steps
- To prevent this happening, always ensure that you run the ALTER DATABASE statement on Service Broker enabled database after restoring the database.
- It is also advisable to verify the Service Broker status after restoring the database, to ensure that Service Broker is enabled.
- Microsoft Reference: Managing Service Broker Identities.
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2012-10-24