Wednesday, July 23, 2014

How to check the time it takes to run a report in SSRS? SQL Server 2012

You can check that from executionLog3 table, if you do not have a dependency on an older view, for example ExecutionLog.

You can use Execution Log to find out how many milliseconds of processing time has spent on each processing phase.


Use ReportServer
select * from ExecutionLog3



No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...