Can anyone please let me know where / (which table) the report server stores email addresses ,which has been set up for subscription. I would like to find out subscription details from the database(ReportServer) using TSQL , where I know the report name & the email address where its been delivered. Many thanks.<o:p></o:p>
Select c.Name , s.LastRunTime,s.LastStatus ,s.Description , c.Path ,s.SubscriptionID ,s.Parameters
from Catalog(nolock) c join
Subscriptions(nolock) s on c.ItemID=s.Report_OID
where
c.Name='A1003 -xxxx' <o:p></o:p>
and where'Here I would like to include the email address to pull out info'<o:p></o:p>
order by LastRunTime <o:p></o:p>