Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Making single table snapshot using sql server 2005 enterprise

0 views
Skip to first unread message

georgeg

unread,
Aug 27, 2008, 11:33:01 AM8/27/08
to
I have created a publisher and snapshot some of the tables, which are
published to a subscriber.
Now I would like to snapshot a single table for this publisher. I checked
the table and start the snapshot agent, but it starts to snapshot all the
tables taht were snapshot before. Is ther some way to do this without doing a
snapshot of all the other tables?

Thanks
--
George Gopie

georgeg

unread,
Aug 28, 2008, 4:40:00 PM8/28/08
to
Does anyone knows if ther is bug in Sql server 2005 Enterprise edition 64bit
for this issue? I was able to do this in sql server 2000 enterorise edition
withot any problems.

Thanks,
--
George Gopie

Paul Ibison

unread,
Oct 3, 2008, 10:54:00 AM10/3/08
to
George,

this is expected behaviour if you have a merge or snapshot publication. If
you have a transactional publication, a snapshot of all articles will always
be generated if the immediate_sync publication property is set to true.
Typically, the immediate_sync publication property is set to true if you
allowed anonymous subscriptions while creating the publication through the
CreatePublication wizard. To prevent the complete snapshot, run the script
below:

EXEC sp_changepublication
@publication = 'MainPub',
@property = N'allow_anonymous',
@value = 'false'
GO

EXEC sp_changepublication
@publication = 'MainPub',
@property = N'immediate_sync',
@value = 'false'
GO

HTH,
Paul Ibison (www.replicationanswers.com)

0 new messages