The information in this article applies to:
BUG #: 57295 (SQLBUG_70) SYMPTOMSIf you have configured replication with immediate-updating subscribers, you may receive the following error during the initial synchronization: When you view the Distribution Agent Error Details window, you will see that the Last Command will be similar to:
This error occurs if the Recursive Triggers option is enabled in the subscribing database.
CAUSEThe error message returned is incorrect. It should read: Error 21082While doing initial synchronization for an immediate-updating subscriber, SQL Server calls sp_addsynctriggers, which creates immediate-updating triggers at the subscriber. The sp_addsynctriggers stored procedure checks to determine if the database option 'Recursive triggers' is set to TRUE for the subscribing database. If it is set to TRUE, sp_addsynctriggers fails with the error described in the SYMPTOMS section of this article. However, in the error message, the word "true" should actually read "false". WORKAROUNDTo work around this problem, disable the Recursive Triggers option on the subscribing database. To do this, you can either use the sp_dboption stored procedure, or use SQL Server Enterprise Manager by doing the following:
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. MORE INFORMATIONFor more information on setting up replication with immediate-updating subscribers or on recursive triggers, see the SQL Server 7.0 Books Online. Additional query words: repl sync synch synced synched synchronize synchronized synchronization dist task job err msg updateable
Keywords : kbSQLServ700 |
Last Reviewed: January 14, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |