May 25, 2012

sp_MSrepl_snapshot_helparticlecolumns (Transact-SQL MetaData) Definition

Please note: that the following source code is provided and copyrighted by Microsoft and is for educational purpose only.
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_snapshot_helparticlecolumns(nvarchar @publication
, nvarchar @article
, nvarchar @publisher)

MetaData:

   
--
-- Name:
-- sp_MSrepl_snapshot_helparticlecolumns
--
-- Description:
-- Returns information about an article's columns.
--
-- For a SQL Server publication, this stored procedure is executed
-- at the Publisher on the publication database. For a heterogeneous
-- publication, this stored procedure may be executed in any database
-- at the distributor for the associated publisher.
--
-- 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
--
-- Notes:
-- Snapshot specific version that returns extra precision/scale information
--
-- Owner:
-- <current owner>
--

create procedure sys.sp_MSrepl_snapshot_helparticlecolumns
(
@publication sysname,
@article sysname,
@publisher sysname = NULL
)
AS
BEGIN
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,
@skipSecurityCheck = 1

IF @retcode <> 0
RETURN (@retcode)

-- Add sp
SET @publisher = UPPER(@publisher) COLLATE DATABASE_DEFAULT
set @cmd = @cmd + N'sys.sp_MSrepl_helparticlecolumns'

EXEC @retcode = @cmd
@publication,
@article,
@publisher,
@publisher_type,
1

RETURN (@retcode)
END

No comments:

Post a Comment

Total Pageviews