Created
April 22, 2014 21:28
-
-
Save jeremykdev/11195008 to your computer and use it in GitHub Desktop.
Query to find reports which are scheduled to be send to a given email address using a subscription in Microsoft SQL Server Reporting Services..
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE ReportServer; | |
SELECT C.Path | |
FROM dbo.Subscriptions AS S | |
INNER JOIN dbo.Catalog AS C | |
ON ( S.Report_OID = C.ItemID ) | |
WHERE ExtensionSettings LIKE '%[email protected]%' | |
ORDER BY C.Path; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment