June 11, 2012

sp_stopmergepushsubscription_agent (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_stopmergepushsubscription_agent(nvarchar @publication
, nvarchar @subscriber
, nvarchar @subscriber_db)

MetaData:

 create procedure sys.sp_stopmergepushsubscription_agent  
(
@publication sysname,
@subscriber sysname,
@subscriber_db sysname
)
as
begin
declare @retcode int
declare @stop tinyint
set @retcode = 0
set @stop = 1

exec @retcode = sys.sp_MSmergepushsubscriptionagentjobcontrol
@publication = @publication,
@subscriber = @subscriber,
@subscriber_db = @subscriber_db,
@action = @stop
return @retcode
end

No comments:

Post a Comment

Total Pageviews