June 7, 2012

sp_replica (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_replica(nvarchar @tabname
, nvarchar @replicated)

MetaData:

   
create procedure sys.sp_replica (
@tabname nvarchar(92), -- The table being replicated --
@replicated nvarchar(5) -- True or false --
) AS

SET NOCOUNT ON
RAISERROR (21023, 16, -1,'sp_replica')
RETURN(1)

No comments:

Post a Comment

Total Pageviews