国产探花免费观看_亚洲丰满少妇自慰呻吟_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
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阿拉尔市| 吴桥县| 乐平市| 金门县| 岳池县| 额敏县| 莎车县| 余庆县| 射阳县| 阿巴嘎旗| 静安区| 藁城市| 盱眙县| 靖江市| 宜丰县| 西乡县| 大化| 三台县| 岐山县| 海丰县| 巴东县| 正安县| 马鞍山市| 荃湾区| 开封市| 明星| 玉林市| 宁蒗| 乃东县| 红原县| 海林市| 石家庄市| 慈溪市| 巴马| 肥乡县| 彰化县| 普兰县| 卫辉市| 兴化市| 白水县| 天祝|