I would like to know more about the data-driven subscriptions on our ReportServer. I am specifically looking for what shared data sources are being used, but the connection string would also suffice.
I have poked around the Subscriptions
and DataSource
tables, but nothing seems to give me the information I need. Any ideas?
asked Apr 26, 2012 at 13:35
1 Answer 1
I kept poking around and... found it. For the future reference of others:
select
Catalog.Name
, Subscriptions.[Description]
from
Subscriptions
join DataSource
on Subscriptions.SubscriptionID = DataSource.SubscriptionID
join Catalog
on DataSource.Link = Catalog.ItemID
answered Apr 27, 2012 at 17:45
-
1Thanks for adding your own solution! Don't forget to accept it if it solved your case.Jeroen– Jeroen2012年05月02日 21:19:57 +00:00Commented May 2, 2012 at 21:19
lang-sql