Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all articles
Browse latest Browse all 10045

Report Usage (show those that are not used)

$
0
0

How do I identify which reports haven't been accessed in the last 12 months?

Below is the script to show the current report usage... but i need to know which ones haven't been accessed

select        c.name,
              e.userName,
              e.format,
              e.parameters,
              e.timeStart,
              e.status
from          REPORTSERVER.DBO.EXECUTIONLOG  e
              left outer join charon.reportserver.dbo.catalog c on e.reportID = c.itemID
where         
       e.timeStart >= dateAdd(mm,-6,getDate())
order by timestart desc


Viewing all articles
Browse latest Browse all 10045

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>