1

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

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
1
  • 1
    Thanks for adding your own solution! Don't forget to accept it if it solved your case. Commented May 2, 2012 at 21:19

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.