我是靠谱客的博主 整齐曲奇,最近开发中收集的这篇文章主要介绍SQL Server 2005 复制:用 SQL 语句快速查看发布(publication)都有哪些订阅(subscription),以及发布包含了哪些表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

公司的数据库服务器上建立了 N 多个复制(replication),大大小小的发布(publication)都有上百个。 每当数据库复制同步出现问题的时候,最头痛了,因为要查看这个发布包含了 哪些表,特别是当查找某个表都包含在哪些发布中,以及被哪些数据库服务器订阅(subscription), 在 SQL Server 2005 的复制监视器(replication monitor)中去找到需要花费很多时间。于是我写了个 SQL 脚本,可以方便的查看数据库复制中的发布、订阅、出版物(article)等基本信息。利用这个 SQL 脚本,可以查看:

1. 当前数据库中都有哪些发布。
2. 一个发布中包含了哪些表。
3. 发布都是被哪些数据库服务器订阅。
--------------------------------------------------------------------------------
-- author : p.c.w.l
-- source : www.sqlstudy.com
-- create : 2008-01-01
-- descr  : a simple sql script to view base-info of publication, subscription
--------------------------------------------------------------------------------

select publication       = p.name
      ,pub_status        = case p.status when 0 then 'inactive' when 1 then 'active' end
      ,sysn_method       = case p.sync_method
                                when 0 then 'native bcp'
                                when 1 then 'character bcp'
                                when 3 then 'native bcp (nolock table)'
                                when 4 then 'character bcp (nolock table)'
                           end
      ,article           = a.name
      ,art_local_table   = object_name(a.objid)
      ,art_remote_table  = a.dest_owner + '.' + a.dest_table
      ,art_type          = case a.type
                              when 1   then '1 = log-based article'
                              when 3   then '3 = log-based article with manual filter'
                              when 5   then '5 = log-based article with manual view'
                              when 7   then '7 = log-based article with manual filter and manual view'
                              when 8   then '8 = stored procedure execution'
                              when 24  then '24 = serializable stored procedure execution'
                              when 32  then '32 = stored procedure (schema only)'
                              when 64  then '64 = view (schema only)'
                              when 128 then '128 = function (schema only)'
                           end
      ,art_status        = case when a.status & 1 = 1 then 'active' else 'inactive' end
      ,subserver         = s.srvname
      ,subdb             = s.dest_db
  from dbo.syspublications p 
          inner join dbo.sysarticles a
    on p.pubid = a.pubid 
          inner join dbo.syssubscriptions s
    on a.artid = s.artid and s.srvid > 0
 where 1 = 1
-- and p.name               = ''    -- publication name
-- and a.name               = ''    -- article name (note:article name always same with table name)
-- and object_name(a.objid) = ''    -- table name
--order by s.srvname, a.name
order by p.name



 


最后

以上就是整齐曲奇为你收集整理的SQL Server 2005 复制:用 SQL 语句快速查看发布(publication)都有哪些订阅(subscription),以及发布包含了哪些表的全部内容,希望文章能够帮你解决SQL Server 2005 复制:用 SQL 语句快速查看发布(publication)都有哪些订阅(subscription),以及发布包含了哪些表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部