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_posttracertoken(nvarchar @publication, nvarchar @publisher)
MetaData:
create procedure sys.sp_posttracertoken ( @publication sysname, @tracer_token_id int = NULL output, @publisher sysname = NULL ) AS BEGIN SET NOCOUNT ON DECLARE @cmd nvarchar(4000) DECLARE @retcode int DECLARE @publisher_type sysname SET @retcode = 0 EXEC @retcode = sys.sp_MSrepl_getpublisherinfo @publisher = @publisher, @publisher_type = @publisher_type OUTPUT, @rpcheader = @cmd OUTPUT IF @retcode <> 0 RETURN (@retcode) -- Add sp SET @publisher = UPPER(@publisher) COLLATE DATABASE_DEFAULT set @cmd = @cmd + N'sys.sp_MSrepl_posttracertoken' EXEC @retcode = @cmd @publication, @tracer_token_id output, @publisher, @publisher_type RETURN (@retcode) END
No comments:
Post a Comment