Hi I am trying to re-initialize the all subscribers after add new articles. I already add new articles(tables) using publisher properties .This replication has setup using backup and restore.
when click publisher->Initialize all subscribers on algent log says following message.
snapshot was not generated because no subscriptions needed initialization
on publisher,
sp_helpsubscription <publication> and valuable on synchornization type is 4 .
When I run following command on publication site.
use Db
go
EXEC sp_reinitsubscription
@publication = N'DB_PUB',
@subscriber = N'SQLserver',
@destination_db = N'DB',
@invalidate_snapshot = 1;
messages says
------------
Invalidated the existing snapshot of the publication. Run the Snapshot Agent again to generate a new snapshot.
Cannot reinitialize article '%' in subscription 'SQL:DB' to publication 'DB_PUB' (subscribed with the 'no sync' option).
Any one can help me out wound be greatly appreciate .
regards