70-466 · Question #141
You have a SQL Server Reporting Services (SSRS) instance. The instance has a report that displays 3 million records. Users report that they experience performance issues when they use the report. You
The correct answer is A. Enable versioning. B. Enable caching.. Enabling caching in SSRS stores a processed copy of the report so subsequent requests are served without re-executing the query against all 3 million records, and versioning supports maintaining multiple cached instances.
Question
Options
- AEnable versioning.
- BEnable caching.
- CEnable report history.
- DCreate snapshots.
- EImplement pagination.
How the community answered
(41 responses)- A73% (30)
- C2% (1)
- D7% (3)
- E17% (7)
Why each option
Enabling caching in SSRS stores a processed copy of the report so subsequent requests are served without re-executing the query against all 3 million records, and versioning supports maintaining multiple cached instances.
Enabling versioning in SSRS allows the report server to maintain multiple cached or snapshot versions, supporting cache refresh workflows that prevent repeated full-dataset query execution and improve throughput for concurrent users.
Report caching stores the processed report output in the report server database so that subsequent user requests within the cache expiration window are served directly from cache, bypassing the expensive query that retrieves 3 million records.
Report history retains snapshot copies for historical audit and comparison purposes but does not reduce rendering time for current on-demand report requests.
Snapshots pre-execute the report on a schedule, but without caching they do not prevent per-user re-rendering overhead; caching is required to fully eliminate repeated execution costs.
Pagination improves the user experience by displaying data in pages but does not reduce the time required to execute the underlying query or process all 3 million records.
Concept tested: SSRS report caching and versioning for performance
Source: https://learn.microsoft.com/en-us/sql/reporting-services/report-server/caching-reports-ssrs
Topics
Community Discussion
No community discussion yet for this question.