We are in the process of removing old reports off of SSRS. The following query is giving us the data we want to see:
SQL
USEReportServerDBGOSELECTDISTINCTC.NAME,C.Path,MAX(EL.TIMESTART)ASLastRunFROMREPORTSERVERDB.DBO.EXECUTIONLOG(NOLOCK)ELRIGHTOUTERJOINREPORTSERVERDB.DBO.CATALOG(NOLOCK)CONEL.REPORTID=C.ITEMIDWHERETYPE=2GROUPBYC.NAME,C.PathORDERBYC.Path,C.NAME
Thanks,
Mike