I have Transactional replication running on a SQL Server 2000 Server with a push type replication to one subscriber. I am trying to add a new tables (article) to the Subscription I ran the following (against the Publishing Database)exec sp_dropsubscription ...---/*exec sp_droparticle ...---/*exec sp_addarticle ...---/*exec sp_addsubscription ... ---/*-EXEC sp_refreshsubscriptions @publication = N'TestDB'Then I run SNAPSHOT on the Publisher and I get a message saying: "A snapshot was not generated because no subscriptions needed initialization." ??
↧