Question 607 of 953

Quick Answer

The answer is to migrate to the Business Critical service tier. This is correct because the General Purpose tier caps log write throughput at roughly 1.5 MB/s due to its use of remote blob storage for data and logs, whereas Business Critical leverages local SSD storage with a log I/O limit up to 100 MB/s, directly eliminating the bottleneck for high-volume transaction logging. On the DP-300 exam, this scenario tests your understanding of Azure SQL Database service tier architecture and how storage differences impact performance metrics like log write throughput. A common trap is attempting to scale up vCores or increase DTUs within General Purpose, which does not raise the log I/O ceiling. Instead, remember the memory tip: “General Purpose is for general speed; Business Critical is for critical writes.” This distinction is key when the question explicitly mentions log write throughput near its limit, as only a tier change addresses the underlying storage limitation.

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

This DP-300 practice question tests your understanding of monitor, configure, and optimize database resources. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

You have an Azure SQL Database that uses the General Purpose service tier. You notice that the log write throughput is consistently near the limit. What should you do to improve log write performance?

Question 1easymultiple choice
Full question →

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

Migrate to the Business Critical service tier.

The General Purpose service tier in Azure SQL Database has a maximum log write throughput of 1.5 MB/s for the most common configurations. The Business Critical tier uses local SSD storage and a higher log I/O limit (up to 100 MB/s), which directly addresses log write throughput bottlenecks. Migrating to Business Critical is the correct action because it provides significantly higher log write throughput and lower latency for transaction log writes.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

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

  • Migrate to the Business Critical service tier.

    Why this is correct

    Business Critical provides higher log write throughput.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Enable accelerated database recovery.

    Why it's wrong here

    This reduces rollback time, not log throughput.

  • Migrate to the Hyperscale service tier.

    Why it's wrong here

    Hyperscale has lower log write throughput per vCore.

  • Increase the DTU purchase model to a higher tier.

    Why it's wrong here

    DTU tiers also have log throughput limits; Business Critical is vCore.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume increasing DTUs or moving to Hyperscale will solve all performance issues, but they fail to recognize that log write throughput is a specific architectural limitation of the General Purpose tier that only the Business Critical tier resolves.

Detailed technical explanation

How to think about this question

In Azure SQL Database, the General Purpose tier uses remote Azure Premium Storage with a log write throughput cap of approximately 1.5 MB/s for the most common configurations (up to 4.5 MB/s for larger compute sizes). The Business Critical tier uses local SSD storage with a dedicated log write path that can achieve up to 100 MB/s, depending on the service objective. This difference is critical for write-heavy workloads, such as high-frequency OLTP transactions, where log write throughput directly impacts transaction commit latency and overall database performance.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related DP-300 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free DP-300 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this DP-300 question test?

Monitor, configure, and optimize database resources — This question tests Monitor, configure, and optimize database resources — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Migrate to the Business Critical service tier. — The General Purpose service tier in Azure SQL Database has a maximum log write throughput of 1.5 MB/s for the most common configurations. The Business Critical tier uses local SSD storage and a higher log I/O limit (up to 100 MB/s), which directly addresses log write throughput bottlenecks. Migrating to Business Critical is the correct action because it provides significantly higher log write throughput and lower latency for transaction log writes.

What should I do if I get this DP-300 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

4 more ways this is tested on DP-300

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. You have an Azure SQL Database that uses the Hyperscale service tier. You notice that during peak hours, the log rate is throttled frequently. You need to reduce log write throttling. What should you do?

hard
  • A.Enable accelerated database recovery to reduce log generation.
  • B.Reduce the size of individual transactions to commit more frequently.
  • C.Partition large tables to spread log writes across files.
  • D.Increase the service level objective (SLO) to a higher vCore count.

Why D: Option A is correct because increasing the service level objective (SLO) provides a higher log rate limit, reducing throttling. Option B is wrong because Hyperscale does not allow enabling accelerated database recovery to reduce log generation; it's always enabled. Option C is wrong because using larger transaction batches reduces log rate by reducing commit frequency. Option D is wrong because partitioning large tables does not directly reduce log write throttling; it may even increase.

Variation 2. You have an Azure SQL Database that uses the Hyperscale service tier. You notice that the log rate is consistently high. You need to reduce the log write latency. What should you do?

medium
  • A.Enable data compression on the tables
  • B.Increase the log rate limit in the Hyperscale service tier
  • C.Enable Accelerated Database Recovery
  • D.Change the service tier to General Purpose

Why B: Option B is correct because increasing the log rate limit allows more log throughput, reducing latency. Option A is incorrect because changing tier to General Purpose would reduce performance. Option C is incorrect because data compression does not affect log writes. Option D is incorrect because enabling Accelerated Database Recovery does not reduce log write latency.

Variation 3. You have an Azure SQL Database that uses the Hyperscale service tier. You notice that the log rate is consistently high, causing performance issues. Which metric should you monitor to identify the log generation rate?

easy
  • A.Log IO percent
  • B.DTU used
  • C.CPU percent
  • D.Data IO percent

Why A: Option B is correct because 'Log IO percent' in Azure SQL Database reflects log generation rate. Option A is wrong because 'Data IO percent' measures data file I/O. Option C is wrong because 'CPU percent' measures processor usage. Option D is wrong because 'DTU used' is for DTU-based tiers, not Hyperscale.

Variation 4. You have an Azure SQL Database that uses the Hyperscale service tier. You notice that the log rate is frequently throttled. Which configuration change can help reduce log rate throttling?

hard
  • A.Increase max degree of parallelism
  • B.Increase the log rate limit by scaling up the service level objective
  • C.Reduce backup retention period
  • D.Add more compute replicas

Why B: Increasing the log rate limit allows more transactions per second. Option D is correct. Option A is wrong because Hyperscale does not have compute replicas for log rate. Option B is wrong because changing backup retention does not affect log rate. Option C is wrong because increasing max degree of parallelism may not reduce log generation.

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

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.