nerdexam
Microsoft

DP-300 · Question #39

Your company has a Microsoft SQL Server database hosted on a Microsoft Azure virtual machine. You create several reports that display data from the database. Users report that the reports are slow…

The correct answer is D. Live Query Statistics. To immediately assess if creating an index significantly improved report performance, Live Query Statistics provides real-time visual feedback on query execution.

Submitted by ngozi_ng· Mar 6, 2026Optimize query performance

Question

Your company has a Microsoft SQL Server database hosted on a Microsoft Azure virtual machine. You create several reports that display data from the database. Users report that the reports are slow to display data. You create an index. You need to identify whether the performance of the reports significantly improves. Which tool should you use?

Options

  • ASQL Server Profiler
  • BQuery Store
  • CDatabase Engine Tuning Advisor
  • DLive Query Statistics

How the community answered

(32 responses)
  • A
    3% (1)
  • B
    9% (3)
  • C
    16% (5)
  • D
    72% (23)

Why each option

To immediately assess if creating an index significantly improved report performance, Live Query Statistics provides real-time visual feedback on query execution.

ASQL Server Profiler

SQL Server Profiler captures a trace of database events for detailed analysis over time, but it does not provide a real-time, visual execution plan or immediate insight into the impact of a specific index on a running query.

BQuery Store

Query Store collects historical query execution plans and runtime statistics, which is excellent for identifying regressions and long-term performance trends, but it's not designed for real-time, immediate visual feedback on a currently executing query.

CDatabase Engine Tuning Advisor

Database Engine Tuning Advisor analyzes workloads to recommend indexing strategies and other physical design structures, but it does not provide tools to monitor or verify the performance improvement of an index after it has been created.

DLive Query StatisticsCorrect

Live Query Statistics provides real-time insights into the execution plan of a running query, visually displaying the progress and actual runtime statistics for each operator. This allows you to immediately see how the query is performing, identify bottlenecks, and directly observe if the newly created index has changed the execution plan or significantly improved performance.

Concept tested: Real-time SQL query performance analysis

Source: https://learn.microsoft.com/en-us/sql/relational-databases/performance/live-query-statistics

Community Discussion

No community discussion yet for this question.

Full DP-300 Practice