Courseiva
Describe an analytics workload on AzuremediumMultiple ChoiceObjective-mapped

DP-900 Describe an analytics workload on Azure Practice Question

A retail chain collects daily sales data from hundreds of stores. The data is stored as CSV files in Azure Data Lake Storage Gen2. The analytics team needs to run complex SQL queries that join sales data with product dimensions and aggregate results across petabytes of data. Queries must return results within seconds. Which Azure service is best suited for this analytical workload?

⚠ Common exam trap

Test-takers frequently confuse Azure Synapse Analytics with Azure SQL Database, assuming both can handle large analytical queries, but Azure SQL Database lacks the MPP architecture and external table support needed for petabyte-scale data lake queries.

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 Synapse Analytics

Azure Synapse Analytics (formerly SQL Data Warehouse) is the correct choice because it is a distributed query engine designed for petabyte-scale data warehousing. It uses Massively Parallel Processing (MPP) to distribute data across compute nodes, enabling complex SQL joins and aggregations on data stored in Azure Data Lake Storage Gen2 to return results in seconds via its SQL pool or serverless SQL endpoint.

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 Synapse Analytics

    Why this is correct

    Azure Synapse Analytics is correct because its massively parallel processing (MPP) architecture splits a single query across many compute nodes, each scanning a different partition of the data simultaneously, so petabyte-scale joins and aggregations can finish in seconds rather than minutes. It can read CSV files directly from Azure Data Lake Storage Gen2 using PolyBase external tables or CREATE EXTERNAL TABLE AS SELECT (CETAS), which means no pre-loading into a traditional relational store is needed. Features like row-level security, workload management, and result-set caching further make it a true cloud-scale analytical SQL engine.

  • Azure SQL Database

    Why it's wrong here

    Azure SQL Database is a row-store OLTP engine engineered for high-concurrency point operations such as inserts, updates, and short key lookups, not for large-scale analytical scans and cross-store joins. It lacks the MPP distributed compute architecture of Synapse, so a query that touches terabytes of data must run serial on a single node and will quickly hit the buffer pool, timeout, or force massive vCore over-provisioning. Even if you imported the daily CSV files into tables, you would incur ingestion latency and storage cost, and the query performance on millions of rows would still not scale linearly across many machines.

    When this WOULD be correct

    A question where a retail chain needs to run real-time inventory queries with low latency (e.g., checking stock levels per store) and supports high-concurrency transactions, with data under a few terabytes. The workload is OLTP, not analytical.

  • Azure Analysis Services

    Why it's wrong here

    Azure Analysis Services is a semantic modeling and in-memory BI engine, not a SQL query engine for raw data. It uses the VertiPaq columnar compression engine to cache processed data in memory, which is great for interactive Power BI/Excel reports but cannot execute T-SQL, scan CSV files in a data lake, or persist raw petabytes of source data. It has to ingest data from an external storage system first, so it adds a latency layer rather than providing direct SQL access to the raw files—making it a presentation-tier complement, not the primary analytics store.

    When this WOULD be correct

    A question where the requirement is to create a semantic data model for business users to perform interactive analysis and reporting on pre-processed data, with fast query performance on aggregated data, and the data volume is moderate (e.g., terabytes) rather than petabytes.

  • Azure HDInsight

    Why it's wrong here

    While Azure HDInsight can run complex SQL queries via its Hive or Spark components, it is optimised for batch processing and interactive queries over large datasets, not for returning results within seconds against petabytes of data. The stem’s sub-second latency requirement demands a massively parallel processing (MPP) engine like Azure Synapse Analytics, which distributes query execution across nodes in memory. HDInsight is tempting because it supports SQL-like syntax and handles petabyte-scale storage, making it a correct choice for long-running ETL jobs or historical analysis where response time is not critical.

    When this WOULD be correct

    A question requiring large-scale batch processing of unstructured data using custom MapReduce or Spark jobs, where interactive SQL performance is not critical, would make HDInsight the correct answer.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The DP-900 exam frequently reuses these exact scenarios with slightly different constraints.

Azure Synapse AnalyticsCorrect answer

Why this is correct

Azure Synapse Analytics is correct because its massively parallel processing (MPP) architecture splits a single query across many compute nodes, each scanning a different partition of the data simultaneously, so petabyte-scale joins and aggregations can finish in seconds rather than minutes. It can read CSV files directly from Azure Data Lake Storage Gen2 using PolyBase external tables or CREATE EXTERNAL TABLE AS SELECT (CETAS), which means no pre-loading into a traditional relational store is needed. Features like row-level security, workload management, and result-set caching further make it a true cloud-scale analytical SQL engine.

Azure SQL DatabaseWrong answer — click to see why

Why this is wrong here

Azure SQL Database is an OLTP system optimized for transactional workloads, not for petabyte-scale analytical queries requiring complex aggregations across large datasets. It lacks the distributed query engine and massive parallel processing (MPP) architecture needed for sub-second responses on petabytes of data.

★ When this WOULD be the correct answer

A question where a retail chain needs to run real-time inventory queries with low latency (e.g., checking stock levels per store) and supports high-concurrency transactions, with data under a few terabytes. The workload is OLTP, not analytical.

Why candidates choose this

Candidates may assume that because SQL Database supports SQL queries and can handle large datasets, it is suitable for analytics. They overlook the fundamental architectural difference between OLTP (SQL Database) and MPP/analytical systems (Synapse).

Azure Analysis ServicesWrong answer — click to see why

Why this is wrong here

Azure Analysis Services is an OLAP engine for semantic models and fast querying of pre-aggregated data, but it does not directly query petabytes of raw CSV data in Data Lake Storage Gen2. It requires data to be processed and loaded into a model, which is not suitable for ad-hoc complex SQL joins on raw data at that scale.

★ When this WOULD be the correct answer

A question where the requirement is to create a semantic data model for business users to perform interactive analysis and reporting on pre-processed data, with fast query performance on aggregated data, and the data volume is moderate (e.g., terabytes) rather than petabytes.

Why candidates choose this

Candidates may confuse Analysis Services with a data warehouse solution because it supports fast query responses and is used for analytical workloads, overlooking that it is not designed for direct querying of raw data at petabyte scale.

Azure HDInsightWrong answer — click to see why

Why this is wrong here

Azure HDInsight is a managed Apache Hadoop/Spark service, but it is not optimized for sub-second SQL query performance on petabyte-scale data; it typically requires longer query times and is better suited for batch processing or ETL workloads.

★ When this WOULD be the correct answer

A question requiring large-scale batch processing of unstructured data using custom MapReduce or Spark jobs, where interactive SQL performance is not critical, would make HDInsight the correct answer.

Why candidates choose this

Candidates may confuse HDInsight's big data capabilities with the need for fast SQL analytics, overlooking that Synapse Analytics provides a dedicated SQL engine for interactive queries.

Analysis generated from the official DP-900blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Quick reference

Cloud Service Model Comparison

ModelYou ManageProvider ManagesExamples
IaaSOS, runtime, apps, dataHardware, hypervisor, networkingEC2, Azure VMs, GCP Compute Engine
PaaSApps and dataOS, runtime, middleware, hardwareElastic Beanstalk, Azure App Service
SaaSData and settings onlyEverything elseMicrosoft 365, Salesforce, Workday
FaaS / ServerlessFunction code onlyInfra, scaling, runtimeLambda, Azure Functions, Cloud Run
CaaSContainers and appsKubernetes, OS, hardwareEKS, AKS, GKE

About these practice questions

This DP-900 question is part of Courseiva's 820-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-900 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-900 exam.