Do you know how to get maximum logging in Report Server?

Last updated by Tom Bui [SSW] 7 months ago.See history

By default SSRS will track reporting execution for the last 60 days. This might be OK in most cases, but you may want to adjust the retention days if you want better report usage statistics.

To update the value you can:

  1. Connect to the ReportServer database in SQL Management Studio
  2. Execute the following script and update the value to the number of days you want to track
EXEC SetConfigurationInfo @Name=N'ExecutionLogDaysKept',@Value=N'365'

After you have this, you can query the ExecutionLog table to find useful information about report execution like:

  • Which users are actively using the reports
  • How long reports are executing
  • The last time a report was executed
We open source. Powered by GitHub