SELECT USR.username AS SubscriptionOwner,
SUB.modifieddate,
SUB.[description],
SUB.eventtype,
SUB.deliveryextension,
SUB.laststatus,
SUB.lastruntime,
SCH.nextruntime,
SCH.NAME AS ScheduleName,
CAT.[path] AS ReportPath,
CAT.[description] AS ReportDescription
FROM dbo.subscriptions AS SUB
INNER JOIN dbo.users AS USR
ON SUB.ownerid = USR.userid
INNER JOIN dbo.[catalog] AS CAT
ON SUB.report_oid = CAT.itemid
INNER JOIN dbo.reportschedule AS RS
ON SUB.report_oid = RS.reportid
AND SUB.subscriptionid = RS.subscriptionid
INNER JOIN dbo.schedule AS SCH
ON RS.scheduleid = SCH.scheduleid
ORDER BY USR.username,
CAT.[path];
![](https://a17d270933.cbaul-cdnwnd.com/04a7235ea5d54daeb569c3b820b85d7f/200000025-c1bfcc2ba7/50000000.jpg?ph=a17d270933)