Reporting Services – AumTechHub.Com http://aumtechhub.com Just share it!!! Tue, 23 Nov 2021 01:42:08 +0000 en-US hourly 1 https://wordpress.org/?v=6.7 179596041 SSRS Report Run History http://aumtechhub.com/ssrs-report-run-history/?utm_source=rss&utm_medium=rss&utm_campaign=ssrs-report-run-history Thu, 27 Aug 2020 02:29:10 +0000 http://aumtechhub.com/?p=46 The following query shows report history for a report name (Employee Attendance Report) in the WHERE clause. This is a great way to check what parameters are used and how often the report is being called.

select
[InstanceName]
, [ReportPath]
, [UserName]
, [ExecutionId]
, [RequestType]
, [Format]
, [Parameters]
, [ReportAction]
, [TimeStart]
, [TimeEnd]
, [TimeDataRetrieval]
, [TimeProcessing]
, [TimeRendering]
, [Source]
, [Status]
, [ByteCount]
, [RowCount]
, [AdditionalInfo]
FROM ExecutionLog2
Where ReportPath like '% Employee Attendance Report %'
Order by TimeStart desc

]]>
46