Это из моего сообщения на другой доске объявлений (нажмите здесь)
SELECT p.name [Pub Name], a.name [Article Name],srvname [Destionation Server], dest_db [Destination dB], login_name [Created by],
case sync_type
when 1 then 'Automatic'
when 2 then 'NONE'
end Sync_Type,
case nosync_type
when 0 then 'automatic (snapshot)'
when 1 then 'Not Initialized'
when 2 then 'initialize with backup'
when 3 then 'initialize from log sequence number (LSN)'
end [Init Type]
FROM dbo.syssubscriptions s
left join dbo.sysarticles a on s.artid = a.artid
left join dbo.syspublications p on a.pubid = p.pubid
LarryR ....