May 25, 2012

sp_MSreplupdateschema (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_MSreplupdateschema(nvarchar @object_name)

MetaData:

   
create procedure sys.sp_MSreplupdateschema @object_name nvarchar(517)
as
begin
declare @retcode int
IF @object_name IS NULL
BEGIN
RAISERROR (14043, 16, -1, '@object_name', 'sp_MSreplupdateschema')
RETURN (1)
END

EXEC @retcode = sys.sp_MSreplcheck_publish
IF @@ERROR <> 0 or @retcode <> 0
return (1)

exec sys.sp_replupdateschema @object_name
return 0
end

No comments:

Post a Comment

Total Pageviews