February 28, 2008 at 3:23 pm
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
February 28, 2008 at 3:32 pm
If you have snapshot or transactional replication, you may try,
sp_helparticle 'replicationName'
March 5, 2008 at 3:48 am
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