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_createmergepalrole(nvarchar @publication)MetaData:
CREATE PROCEDURE sys.sp_createmergepalrole (@publication sysname)
AS
BEGIN
set nocount on
declare @retcode int
-- security check done in here
exec @retcode = sys.sp_createpalrole @publication = @publication, @mode = 0
if @@ERROR <> 0 or @retcode <> 0
return(1)
END
No comments:
Post a Comment