Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: System table which holds the subscriber server name

    It seems the following script is doing what you are trying to achieve.

    select distinct pub.name [Publisher], P.Publisher_db, p.[Publication], s.subscriber_id, sub.name [Subscriber], [Subscriber_db]

    from

    master.sys.servers pub

    join distribution.dbo.MSsubscriptions s

    on s.publisher_id = pub.server_id

    join master.sys.servers...

Viewing post 1 (of 1 total)