The meta data is from an SQL 2012 Server.
I have posted alot more, find the whole list here.
Goto Definition or MetaData
Definition:
sys.sp_startpublication_snapshot(nvarchar @publication, nvarchar @publisher)
MetaData:
create procedure sys.sp_startpublication_snapshot ( @publication sysname, @publisher sysname = null ) as begin set nocount on declare @cmd nvarchar(4000) declare @retcode int declare @pubtype sysname declare @start tinyint set @retcode = 0 set @start = 0 exec @retcode = sys.sp_MSrepl_getpublisherinfo @publisher = @publisher, @publisher_type = @pubtype OUTPUT, @rpcheader = @cmd OUTPUT if @retcode <> 0 return (@retcode) -- Add sp set @cmd = @cmd + N'sys.sp_MSrepl_publicationsnapshotjobcontrol' exec @retcode = @cmd @publication = @publication, @publisher = @publisher, @action = @start return (@retcode) end
No comments:
Post a Comment