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_MSupdaterecgen(uniqueidentifier @altrepid, uniqueidentifier @altrecguid
, bigint @altrecgen)
MetaData:
-- updates info about received generations, or inserts a corresponding row
create procedure sys.sp_MSupdaterecgen
@altrepid uniqueidentifier,
@altrecguid uniqueidentifier,
@altrecgen bigint
as
-- Security check
declare @retcode int
exec @retcode = sys.sp_MSrepl_PAL_rolecheck
if (@retcode <> 0) or (@@error <> 0)
return 1
update dbo.sysmergesubscriptions
set recguid = @altrecguid, recgen = @altrecgen
where subid = @altrepid and
(recgen < @altrecgen or recgen is null)
return (0)
No comments:
Post a Comment