国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

怎樣手工刪除數據庫里的Merge Replication信息

2024-07-21 02:06:16
字體:
來源:轉載
供稿:網友

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
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 磐石市| 红原县| 城步| 河间市| 县级市| 绍兴市| 正镶白旗| 上蔡县| 麻阳| 梓潼县| 琼结县| 肇源县| 炎陵县| 榆社县| 宁海县| 黄石市| 成武县| 兰溪市| 墨脱县| 上杭县| 赤城县| 县级市| 玉龙| 新郑市| 沂源县| 三亚市| 澄城县| 锡林浩特市| 九江县| 和平县| 离岛区| 连江县| 延庆县| 浪卡子县| 富宁县| 沁阳市| 竹溪县| 元阳县| 临夏县| 中西区| 武山县|