Viewing post 1 (of 1 total)
This might help you...
USE [ReportServer]
SELECT c.PATH, s.Description, s.LastStatus, s.LastRunTime
FROM Subscriptions s INNER JOIN CATALOG c ON s.Report_Oid = c.ItemId
WHERE LastRunTime > DATEADD(hh,-12,GETDATE())
ORDER BY s.LastRunTime ASC
November 11, 2009 at 2:39 pm
#1078055