-----允许对系统表进行修改
sp_configure 'allow updates',1
go
reconfigure with override
go
-----将复制的标记位清除
use youtbale
go
update sysobjects set replinfo=0 where name='object_name'
go
----取消允许对系统表进行修改
sp_configure 'allow updates',1
go
reconfigure with override
go