Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Other Technologies / Replication / October 2008

Tip: Looking for answers? Try searching our database.

Making single table snapshot using sql server 2005 enterprise

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
georgeg - 27 Aug 2008 16:33 GMT
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
Signature

George Gopie

georgeg - 28 Aug 2008 21:40 GMT
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,
Signature

George Gopie

> I have created a publisher and snapshot some of the tables, which are
> published to a subscriber.
[quoted text clipped - 4 lines]
>
> Thanks
Paul Ibison - 03 Oct 2008 15:54 GMT
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)
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.