欢迎光临
我们一直在努力

怎样手工删除数据库里的Merge Replication信息-数据库专栏,SQL Server

建站超值云服务器,限时71元/月

1. the best way is to run sp_removedbreplication.

2. after you run sp_removedbreplication, you may run the following
script in your restored database. this script will generate the drop
commands for replication related system tables, views, stored procedures
and triggers. you may check the generated output first to make sure it
does not drop your own user object, and then run the output to drop
these information.

set nocount on
select drop table + name from sysobjects
where name like %conflict% and type=u

select drop table + name from sysobjects
where name like msmerge% and type=u

select drop trigger + name from sysobjects
where type = tr and status < 0 and category = 2

select drop proc + name from sysobjects
where name like sp_% and type =p and category = 2

select drop proc + name from sysobjects
where name like sel_% and type =p and category = 2

select drop view + name from sysobjects
where name like tsvw% and type =v and category = 2
select drop view + name from sysobjects
where name like ctsv% and type =v and category = 2

3. (optional step) you may use the steps in the following article to
make sure your user objects are no longer marked as being used in
replication (by change the replinfo column of the sysobjects to 0. this
steps is only needed if the replinfo column is not 0):

http://support.microsoft.com?id=326352

4. (optional step) check the steps in the following article to make sure
no columns are being marked as replicated:

http://support.microsoft.com?id=811899

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 怎样手工删除数据库里的Merge Replication信息-数据库专栏,SQL Server
分享到: 更多 (0)

相关推荐

  • 暂无文章