Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Restore or recovery may fail or take a long time if query notification is used in a database


Symptoms

You may notice one or more of the following symptoms with a database that is configured for query notification subscriptions:

Symptom 1: Restoring the database from its backup may fail with 1205 error message if NEW_BROKER option is specified during the restore operation. Additionally dump files will be generated in the SQL Server’s Errorlog folder.

Symptom 2: Restoring the database from its backup fails and the database goes offline.  Additionally the following messages are logged in the SQL Server Errorlog:

2010-08-13 04:15:32.09 spid61 Error: 9768, Severity: 16, State: 1.
2010-08-13 04:15:32.09 spid61 A database user associated with the secure conversation was dropped before credentials had been exchanged with the far endpoint. Avoid using DROP USER while conversations are being created. 
2010-08-13 04:15:32.09 spid61 Failed to check for pending query notifications in database "5" because of the following error when opening the database: 'A database user associated with the secure conversation was dropped before credentials had been exchanged with the far endpoint. Avoid using DROP USER while conversations are being created. The query notification subscriptions cleanup operation failed. See previous errors for details.'.
2010-08-13 04:15:32.10 spid61 Error: 9001, Severity: 16, State: 5.
2010-08-13 04:15:32.10 spid61 The log for database 'Test' is not available. Check the event log for related error messages. Resolve any errors and restart the database.
2010-08-13 04:15:32.10 spid61 Error: 3314, Severity: 21, State: 4.
2010-08-13 04:15:32.10 spid61 During undoing of a logged operation in database 'Test', an error occurred at log record ID (1835:7401:137). Typically, the specific failure is logged previously as an error in the Windows Event Log service. Restore the database or file from a backup, or repair the database.

Note: You may encounter the issue during recovery phase of the database. Recovery is also run on a database when database is brought online, server is restarted, etc.

Symptom 3: Restoring the database from its backup may take a long time and messages similar to the following are logged in SQL Server Errorlog:

Date Time SPID Query notification delivery could not send message on dialog '{ Dialog ID }.'. Delivery failed for notification '?<qn:QueryNotification xmlns:qn="http://schemas.microsoft.com/SQL/Notifications/QueryNotification" id="2881" type="change" source="database" info="restart" database_id="7" sid="0x010500000000000515000000FA48F22A6990BA52422C73DFF9030000"><qn:Message>4a4c696b-645c-40fd-bfef-4f2bc7c599b4;eb99973e-3cc9-4c7e-b4b9-47d8cf590c43</qn:Message></qn:QueryNotification>' because of the following error in service broker: 'The conversation handle "<Conversation Handler>" is not found.'.

Note: You may encounter the issue during recovery phase of the database. Recovery is also run on a database when database is brought online, server is restarted, etc.

↑ Back to the top


Cause

Cause for Symptom 1: When you specify NEW_BROKER option during the restore operation, SQL Server attempts to truncate all the Service Broker related tables. Truncation requires SCH_M lock on the truncated object. The main transaction thus holds a SCH_M lock on sysdesend. When a database is recovered or restored, by default SQL Server attempts to fire all outstanding query notifications, which requires rows(messages) to be inserted in sysdesend table. This operation requires a SCH_S lock on the table. However this operation happens on a different transaction and the attempt to acquire SCH_S lock is blocked by the SCH_M lock held by the first transaction. As a result the thread executing the restore is now blocked on a resource that it owns, situation known as a self-deadlock. The deadlock is detected by the deadlock monitor and the thread is terminated, thus terminating the restore operation.

For additional information on locks you can refer to the following topic in SQL Server Books Online:

The other symptoms discussed in the Symptoms section are caused due to known issues that are documented in the fix articles mentioned in the Resolution section below.

↑ Back to the top


Resolution

Workaround for Symptom 1:You can workaround the problem by enabling session level trace flag 9109 before you attempt the restore operation. An example script is shown below:

dbcc traceon (9109)
go
RESTORE DATABASE [Test]
FROM  DISK = N'C:\TestBackup.bak' WITH  FILE = 1, 
MOVE N'test_Data' TO N'C:\test.mdf', 
MOVE N'test_Log' TO N'C:\test_1.ldf',  
NOUNLOAD, 
STATS = 1,
NEW_BROKER
go
dbcc traceoff (9109)
go


NOTE: Once the database is completely restored or recovered it is highly recommended that you check to make sure that query notifications are being fired. The easiest way to achieve this is to change the status of the database to Read-only and change it back to Read-write. Some other ways you can check for this include detaching and reattaching the database, restarting SQL Server etc.

Note: You can also avoid the problem altogether by not specifying by not specifying the NEW_BROKER option on the restore operation and instead use ALTER
DATABASE with NEW_BROKER option after the database is restored.


For more information on the fix for Symptom 2 refer to the followng article:
  • 974777 FIX: Database restore operation may fail during the recovery phase when the database uses query notification in SQL Server 2005 or in SQL Server 2008
For more information on the fix for Symptom 3 refer to the followng article:
  • 975089 FIX: The restore operation takes a long time when you restore a database that has query notification enabled in SQL Server 2005

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 2483090
Revision : 1
Created on : 1/7/2017
Published on : 12/15/2010
Exists online : False
Views : 111