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.
| 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_helppublicationFrom BOL:DECLARE @myTranPub AS sysnameSET @myTranPub = N'AdvWorksProductTran' USE [AdventureWorks]EXEC sp_helppublication @publication = @myTranPubGO Nathan Skerl |
 |
|
|
|
|
|