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_MSgetsubscriberinfo(uniqueidentifier @pubid)MetaData:
create procedure sys.sp_MSgetsubscriberinfo
(@pubid uniqueidentifier)
as
-- Security Checking
-- Pal users have access
if ({fn ISPALUSER(@pubid)} <> 1)
begin
if (@pubid is NULL)
begin
RAISERROR (21723, 16, -1, 'sp_MSgetsubscriberinfo')
return 1
end
else
begin
RAISERROR (14126, 11, -1)
return 1
end
end
declare @expr nvarchar(500)
select @expr = validate_subscriber_info from dbo.sysmergepublications where pubid = @pubid
-- Return the value --
select @expr
No comments:
Post a Comment