You can use the catalog and executionlog tables to get this information
SELECT
c.Name, c.[Path], MAX(e.TimeStart) as LastRun
FROM ReportServer.dbo.Catalog c
join ReportServer.dbo.ExecutionLog e on c.ItemID = e.ReportID
GROUP BY c.name, c.[Path]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…