create procedure sys.sp_MSmarkreplinfo(
@object sysname, /* Name of the table, unqualitied */
@owner sysname = NULL /* Name of the owner, unqualified */
)AS
declare @retcode int
exec @retcode = sys.sp_MSunmarkreplinfo @object=@object, @owner=@owner, @type = 1
if @@ERROR<>0 or @retcode<>0
return (1)
return (0)