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_refreshsubscriptions(nvarchar @publication, nvarchar @publisher)
MetaData:
-- -- Name: sp_refreshsubscriptions -- -- Description: Add article to existing subscriptions -- -- Parameter: (see proc below) -- -- Returns: -- -- Security: Why is this public - can it not be internal -- create procedure sys.sp_refreshsubscriptions ( @publication 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, @rpcheader = @cmd OUTPUT, @publisher_type = @publisher_type OUTPUT IF @retcode <> 0 RETURN (@retcode) -- Add sp SET @publisher = UPPER(@publisher) COLLATE DATABASE_DEFAULT set @cmd = @cmd + N'sys.sp_MSrepl_refreshsubscriptions' EXEC @retcode = @cmd @publication, @publisher, @publisher_type RETURN (@retcode) END
No comments:
Post a Comment