The information in this article applies to:
BUG #: 52381 (SQLBUG_70) SYMPTOMSThe Immediate Updating Subscriber publication builds the trigger on the subscribing table incorrectly. Instead of referring to the INSERTED table, the trigger refers to the source table. WORKAROUNDChange the trigger to refer to the INSERTED table. STATUSMicrosoft has confirmed this to be a problem in SQL Server version 7.0. MORE INFORMATION
For example, suppose that you are filtering the "authors" table in the "pubs" database to publish only the rows for the states that have a matching value in the "states" table.
Instead, modify the trigger to be:
This problem may also occur if the destination table has a different name.
Additional query words:
Keywords : SSrvRep kbSQLServ700bug |
Last Reviewed: July 27, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |