replication table

  • How can we identify the number or the names of the tables that are involved in transactional replication in sql server 2000 ?

    Is there any perticulare commands or query that I can use to identify them caz i got a request to create a separate table which will have

    the names of the tables that are involved in replication in that database and also to create another separate table that will include tables

    that are not involved in the replication.

    Any suggestions

  • If you have snapshot or transactional replication, you may try,

    sp_helparticle 'replicationName'

  • Hi,

    I think the best way would be to query the tables in the Distribution database.

    MSArticles contains all tables used in all the publishers on that server, you can join in MSPublications to get a more user friendly set of records

    To start

    USE Distribution

    SELECT Publication_id,Article

    FROM MSArticles

    ORDER By Publication_id

    HTH

    Graeme

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply