Exam DP-800 Topic 1 Question 78 Discussion
Actual exam question for Microsoft's DP-800 exam
Question #: 78
Topic #: 1
Question #: 78
Topic #: 1
You have an Azure SQL database that stores order data.
A reporting query aggregates monthly revenue per customer runs frequently.
You need to reduce how long it takes to retrieve the calculated values. The solution must NOT alter any underlying table structure.
What should you do?
A reporting query aggregates monthly revenue per customer runs frequently.
You need to reduce how long it takes to retrieve the calculated values. The solution must NOT alter any underlying table structure.
What should you do?
Suggested Answer: D Vote an answer
Creating an indexed view using WITH SCHEMABINDING, including COUNT_BIG(*), and creating a unique clustered index is a valid and effective approach to significantly improve the performance of your frequent reporting query without altering the underlying table structure.
This process materializes the aggregated data and stores it physically in the database, so the query optimizer can read from the precomputed view rather than rescanning the base tables every time the query runs.
Reference:
https://learn.microsoft.com/en-us/sql/relational-databases/views/create-indexed-views
This process materializes the aggregated data and stores it physically in the database, so the query optimizer can read from the precomputed view rather than rescanning the base tables every time the query runs.
Reference:
https://learn.microsoft.com/en-us/sql/relational-databases/views/create-indexed-views
by Bess at Jun 25, 2026, 09:24 PM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).