This is a very handy script to give you a quick overview of the report subscriptions you have on your Microsoft SQL Server Reporting Services server. It works on SSRS 2005 to 2012. -- Show reports and their subscriptions USE ReportServer ; SELECT CASE WHEN ( SubString ( c . [Path] , 1 , Len ( c . [Path] ) - ( CharIndex ( '/' , Reverse ( c . [Path] )) - 1 ))) = '' THEN '<root folder>' ELSE SubString ( c . [Path] , 1 , Len ( c . [Path] ) - ( CharIndex ( '/' , Reverse ( c . [Path] )) - 1 )) END AS Folder , C . Name , s . Description , s . LastRunTime , REPLACE ( REPLACE ( CAST ( CAST ( extensionsettings AS XML ). query ( '/ParameterValues/ParameterValue/Value[../Name = ''TO'']' ) AS VARCHAR ( MAX )), '</Value>' , '' ), '<Value>' , '' ) AS
Hints and tips on working with Microsoft SQL Server