Courseiva
Configure and manage automation of taskshardMultiple SelectObjective-mapped

DP-300 Configure and manage automation of tasks Practice Question

You are automating index maintenance for an Azure SQL Database. Which THREE of the following should you consider to minimize performance impact?

⚠ Common exam trap

It's easy for candidates to assume SORT_IN_TEMPDB = ON always improves performance, but in Azure SQL Database it can increase tempdb contention, and MAXDOP = 0 is mistakenly thought to be optimal for maintenance tasks when it actually risks resource starvation.

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

Use the ONLINE = ON option when rebuilding indexes.

Using ONLINE = ON when rebuilding indexes in Azure SQL Database allows concurrent user access to the underlying table during the index rebuild operation. This minimizes blocking and performance impact on production workloads, as the index rebuild is performed as a series of short-term locks rather than a single long-term schema modification lock.

Answer analysis

Option-by-option breakdown

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

  • Use the ONLINE = ON option when rebuilding indexes.

    Why this is correct

    Allows concurrent access.

  • Always use SORT_IN_TEMPDB = ON to reduce tempdb contention.

    Why it's wrong here

    SORT_IN_TEMPDB may increase tempdb load.

  • Set MAXDOP to 0 to use all CPUs for faster execution.

    Why it's wrong here

    Using all CPUs can starve other workloads.

  • Reorganize indexes with fragmentation below 30% instead of rebuilding.

    Why this is correct

    Reorganize is less impactful.

  • Use a fill factor of 70-80% for indexes with frequent insert/update operations.

    Why this is correct

    Reduces page splits.

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.