Question 453 of 953
Plan and implement data platform resourceshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is Azure SQL Managed Instance. This is the correct choice because it offers near 100% compatibility with on-premises SQL Server, including full support for SQL Server Agent jobs, Service Broker, and cross-database queries within the same instance—features that are essential for your migration but are explicitly unavailable in Azure SQL Database, which has a more restricted surface area. On the Microsoft Azure Database Administrator Associate DP-300 exam, this scenario tests your ability to distinguish between PaaS offerings based on feature parity; a common trap is assuming Azure SQL Database can handle these workloads via elastic query, but that only supports limited cross-database reads without Agent or Service Broker functionality. Remember the memory tip: if you need the full SQL Server engine with Agent and Service Broker, think “Managed Instance for managed compatibility.”

DP-300 Plan and implement data platform resources Practice Question

This DP-300 practice question tests your understanding of plan and implement data platform resources. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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.

Your company is migrating an on-premises SQL Server database to Azure SQL Managed Instance. The database uses SQL Server Agent jobs, Service Broker, and cross-database queries within the same instance. Which PaaS option should you choose?

Question 1hardmultiple 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

Azure SQL Managed Instance

Azure SQL Managed Instance is the correct choice because it provides near 100% compatibility with on-premises SQL Server, including support for SQL Server Agent jobs, Service Broker, and cross-database queries within the same instance. These features are not available in Azure SQL Database, which is a PaaS offering with a more restricted surface area. SQL Server on Azure VM is IaaS and requires manual management, while elastic query in Azure SQL Database only supports cross-database queries across different databases, not the full Service Broker or Agent functionality.

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.

  • Azure SQL Managed Instance

    Why this is correct

    SQL Managed Instance is a PaaS offering that supports SQL Server Agent, Service Broker, and cross-database queries.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Azure SQL Database

    Why it's wrong here

    Azure SQL Database does not support SQL Server Agent, Service Broker, or cross-database queries.

  • SQL Server on Azure Virtual Machine

    Why it's wrong here

    While it supports all features, it is not a PaaS solution and requires manual patching and high availability management.

  • Azure SQL Database with elastic query

    Why it's wrong here

    Elastic query allows cross-database queries across different servers, but does not provide SQL Server Agent or Service Broker support.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse Azure SQL Database with Azure SQL Managed Instance, assuming that all PaaS SQL offerings support the same features, but Azure SQL Database deliberately omits instance-scoped features like Agent and Service Broker to maintain a multi-tenant architecture.

Detailed technical explanation

How to think about this question

Azure SQL Managed Instance runs in a dedicated virtual network and uses a fully managed SQL Server engine that supports Service Broker for asynchronous messaging and queuing, as well as SQL Server Agent for scheduling jobs like backups or index maintenance. Cross-database queries within the same instance work natively because Managed Instance provides a single instance scope, unlike Azure SQL Database which uses a sharded or elastic pool model. A real-world scenario where this matters is migrating an e-commerce system that relies on Service Broker for order processing and Agent jobs for nightly data cleanup, which would break on Azure SQL Database.

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

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

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?

Plan and implement data platform resources — This question tests Plan and implement data platform resources — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Azure SQL Managed Instance — Azure SQL Managed Instance is the correct choice because it provides near 100% compatibility with on-premises SQL Server, including support for SQL Server Agent jobs, Service Broker, and cross-database queries within the same instance. These features are not available in Azure SQL Database, which is a PaaS offering with a more restricted surface area. SQL Server on Azure VM is IaaS and requires manual management, while elastic query in Azure SQL Database only supports cross-database queries across different databases, not the full Service Broker or Agent functionality.

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

3 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. Your company is migrating an on-premises SQL Server database to Azure SQL Managed Instance. The database is 2 TB in size and has multiple logins, jobs, and SQL Server Agent alerts. You need to choose a migration method that minimizes downtime and preserves all server-level objects. Which approach should you recommend?

hard
  • A.Export to BACPAC and import to Managed Instance
  • B.Use Azure Database Migration Service with online migration
  • C.Use transactional replication
  • D.Back up to URL and restore to Managed Instance

Why B: Azure Database Migration Service (DMS) with online migration is the correct choice because it supports minimal downtime by continuously synchronizing changes from the source SQL Server to the target Azure SQL Managed Instance until cutover. It also automatically migrates server-level objects such as logins, jobs, and SQL Server Agent alerts, which are critical for preserving the full environment. This method is designed for large databases (2 TB) and provides a managed, resilient migration pipeline.

Variation 2. Your company is migrating an on-premises SQL Server database to Azure SQL Managed Instance. The database uses a SQL Server Agent job that runs a PowerShell script to process files. You need to ensure the job continues to run after migration with minimal changes. What should you do?

medium
  • A.Migrate the database to Azure SQL Managed Instance and recreate the job using SQL Server Agent.
  • B.Migrate the database to Azure SQL Managed Instance and configure an Azure Automation runbook to run the script.
  • C.Migrate the database to Azure SQL Managed Instance and use Elastic Jobs to run the PowerShell script.
  • D.Migrate the database to Azure SQL Database and use Elastic Jobs to run the PowerShell script.

Why A: Azure SQL Managed Instance supports SQL Server Agent, including jobs that run PowerShell scripts via CmdExec or PowerShell job steps. By migrating the database and recreating the job with the same script, you preserve the existing automation with minimal changes. This is the only option that keeps the job execution environment identical to the on-premises setup.

Variation 3. A company is planning to migrate their on-premises SQL Server databases to Azure SQL Managed Instance. They have a database that uses SQL Server Agent jobs with proxies and also uses cross-database queries extensively. What is the main consideration for this migration?

medium
  • A.Migrate to Azure SQL Managed Instance as it supports SQL Agent and cross-database queries within the same instance.
  • B.Migrate to SQL Server on Azure Virtual Machines for full control.
  • C.Migrate to Azure SQL Database elastic query to handle cross-database queries.
  • D.Migrate to Azure SQL Database instead to reduce costs.

Why A: Azure SQL Managed Instance is the correct target because it provides full support for SQL Server Agent, including proxies, and enables cross-database queries within the same instance. Unlike Azure SQL Database, Managed Instance maintains instance-level scope, allowing queries that reference other databases in the same instance without requiring external data sources or elastic queries.

Last reviewed: Jun 24, 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.