Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

Consider the following scenario:

  • You use Microsoft SQL Server 2012 or SQL Server 2014.

  • You have database that has service broker enabled in primary replica.

  • You back up the database in primary server which has service broker enabled and restore it on secondary server.

  • As part of defining the availability group between the primary and secondary servers, you try to join the database to the availability group by using the New Availability Group wizard or the command:
    ALTER DATABASE <dbname> SET HADR AVAILABILITY GROUP = <agname>

In this scenario,the following error is logged in SQL Server error log:

{
Error: 3449, Severity: 21, State: 1.
SQL Server must shut down in order to recover a database (database ID 1). The database is either a user database that could not be shut down or a system database. Restart SQL Server. If the database fails to recover after another startup, repair or restore
SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
}


Cause

The issue occurs because if a service broker enabled database is backed up and restored to the secondary server, the service broker in restored database is not enabled. The database still keeps a service broker id internally.

When you add the restored database on the secondary server to the availability group, the service broker is enabled. The same GUID in the availability database is detected, and the following error is raised (silently):
9772 “The Service Broker in database "<dbname>" cannot be enabled because there is already an enabled Service Broker with the same ID”.

This results in error 3449 as the database is joining the availability group, and causes the SQL server to shut down unexpectedly.

Each new cumulative update for SQL Server contains all the hotfixes and all the security fixes that were included with the previous cumulative update. Check out the latest cumulative updates for SQL Server:


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×