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_MSrepl_helparticlermo(nvarchar @publication, nvarchar @article
, bit @returnfilter
, nvarchar @publisher)
MetaData:
--
-- Name:
-- sp_MSrepl_helparticlermo
--
-- Description:
-- Special version of help article for RMO. Returns extended
-- HREPL information.
--
-- Security:
-- SQL Server publication: 'sysadmin', db_owner of publishing database, PAL
-- Heterogeneous publication: 'sysadmin', db_owner of distribution database, PAL
--
-- Returns:
-- Result set of article properties
--
--
create procedure sys.sp_MSrepl_helparticlermo
(
@publication sysname, -- The publication name --
@article sysname = '%', -- The article name --
@returnfilter bit = 1, -- Return filter flag --
@publisher sysname = NULL,
@found int = 0 OUTPUT
)
AS
BEGIN
DECLARE @cmd nvarchar(4000)
DECLARE @retcode int
DECLARE @publisher_type sysname
select @retcode = 0
EXEC @retcode = sys.sp_MSrepl_getpublisherinfo @publisher = @publisher,
@publisher_type = @publisher_type OUTPUT,
@rpcheader = @cmd OUTPUT,
@skipSecurityCheck = 1
IF @retcode <> 0
RETURN (@retcode)
SET @publisher = UPPER(@publisher) COLLATE DATABASE_DEFAULT
IF @publisher_type <> N'MSSQLSERVER'
BEGIN
select @cmd = @cmd + N'sys.sp_IHhelparticle'
EXEC @retcode = @cmd
@publication,
@article,
@returnfilter,
@publisher,
@publisher_type,
@found OUTPUT,
1
END
ELSE
BEGIN
select @cmd = @cmd + N'sys.sp_MSrepl_helparticle'
EXEC @retcode = @cmd
@publication,
@article,
@returnfilter,
@publisher,
@found OUTPUT,
1
END
RETURN (@retcode)
END
No comments:
Post a Comment