Hello,
Which one is the subscriber, A or B?
What kind of alter table did you perform, such as add/drop column or change the definition of the table?
After the ALTER TABLE, the table schema is different from each other, right?
When the replication was rebuilt, was it a pull subscription or push subscription?
Thanks.
This posting is provided AS IS with no warranties, and confers no rights
|||A is the publisher and B is the subscriber. I alter the table with increasing the datatype width from 9-50 varchar. After update the schema of A is different from each other. Replication is push from publisher.|||Try this -
Alter the table on A back to what it was.
Set up the replication with NoSync scenario, as @.sync_type = 'NONE' in the sp_addmergesubscription (see http://msdn2.microsoft.com/en-us/library/ms187717.aspx).
Make a dummy sync.
Alter table again on A to increasing the width of the desired datatype
Sync again.
Thanks,
This posting is provided AS IS with no warranties, and confers no rights
No comments:
Post a Comment