Courseiva
Monitor, configure, and optimize database resourcesmediumMultiple SelectObjective-mapped

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

You are tuning a query in Azure SQL Database. Which TWO actions can reduce logical reads?

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

Create a nonclustered index on the columns used in WHERE clause

Creating appropriate indexes, such as a nonclustered index on columns used in WHERE clauses, can reduce logical reads by enabling index seeks instead of full table scans. Updating statistics helps the query optimizer choose efficient execution plans, potentially reducing logical reads. Adding query hints may force an index but does not guarantee reduced reads and can be counterproductive. Rewriting as a stored procedure does not directly reduce logical reads. Increasing database max memory does not reduce 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.

  • Add query hints to force index usage

    Why it's wrong here

    Hints may not always reduce reads and can be counterproductive.

  • Create a nonclustered index on the columns used in WHERE clause

    Why this is correct

    Index can reduce the number of rows read.

  • Rewrite the query as a stored procedure

    Why it's wrong here

    Stored procedures do not inherently reduce logical reads.

  • Increase the database max memory setting

    Why it's wrong here

    Memory increase does not directly reduce logical reads.

  • Update statistics on the tables involved

    Why this is correct

    Helps optimizer choose better plans that may reduce reads.

About these practice questions

This DP-300 question is part of Courseiva's 906-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. 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.