Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 How do I get frequency of replication publications

Author  Topic 

treleung
Starting Member

1 Post

Posted - 2006-06-26 : 13:13:58
Hi, I right click on the publications and hit 'properties' but can't find where the frequency of them is.

Thanks,

-Trevor

nathans
Aged Yak Warrior

938 Posts

Posted - 2006-06-26 : 20:01:19
Look up sp_helppublication

From BOL:

DECLARE @myTranPub AS sysname
SET @myTranPub = N'AdvWorksProductTran'

USE [AdventureWorks]
EXEC sp_helppublication @publication = @myTranPub
GO


Nathan Skerl
Go to Top of Page
   

- Advertisement -