Courseiva

DP-300 Practice Question: Monitor, configure, and optimize database resources

Exhibit

Refer to the exhibit.
SELECT 
  plan_handle,
  execution_count,
  total_worker_time,
  total_logical_reads,
  total_elapsed_time
FROM sys.dm_exec_query_stats
ORDER BY total_logical_reads DESC;

You are analyzing query performance in an Azure SQL Database. The query in the exhibit returns a list of queries ordered by total_logical_reads. What does high total_logical_reads typically indicate?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The query is reading many pages from the buffer pool, possibly due to missing indexes

High total_logical_reads typically indicates that the query is reading many pages from the buffer pool, which often points to missing or inefficient indexes. Option D is correct. Option A is incorrect because high logical reads relate to buffer pool access, not necessarily I/O latency (which is indicated by high physical reads). Option B is incorrect because CPU time is measured by worker_time, not logical reads. Option C is incorrect because while logical reads can increase memory usage, the primary indicator of memory usage is the memory grant, not logical reads.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The query is experiencing I/O latency

    Why it's wrong here

    I/O latency is indicated by waits, not logical reads.

  • The query is using a lot of CPU time

    Why it's wrong here

    CPU time is measured by total_worker_time.

  • The query is using a lot of memory

    Why it's wrong here

    Logical reads can increase memory usage but not directly indicate memory.

  • The query is reading many pages from the buffer pool, possibly due to missing indexes

    Why this is correct

    Logical reads are page reads from the buffer pool, high values indicate excessive data access.

About these practice questions

One of 906 original DP-300 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This DP-300 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DP-300 exam.