DP-900 Describe an analytics workload on Azure Practice Question
A company stores terabytes of web server log data in CSV files in Azure Data Lake Storage Gen2. Data analysts need to run ad-hoc SQL queries on this data to analyze user behavior patterns. The queries are complex, involve joins across multiple files, and the analysts prefer not to move the data into a separate store. Which Azure service should they use?
⚠ Common exam trap
Many exam-takers confuse Azure Data Factory's data movement capabilities with query execution, or assume that any SQL-capable service (like Azure SQL Database) can query external files without data import, but only Synapse Serverless SQL pool provides native, serverless SQL querying over Data Lake Storage.
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 Serverless SQL pool
Azure Synapse Serverless SQL pool is the correct choice because it allows analysts to run T-SQL queries directly against CSV files stored in Azure Data Lake Storage Gen2 without moving the data. It uses a distributed query engine to process complex joins across multiple files, making it ideal for ad-hoc analytics on large-scale log data.
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 Data Factory
Why it's wrong here
Azure Data Factory is incorrect because it is a data integration and orchestration service used to build ETL/ELT pipelines, not a query engine. It cannot execute ad-hoc T-SQL queries against CSV files; it simply moves or transforms data from one location to another, typically invoking other compute services like SQL pools, Azure Databricks, or HDInsight. While ADF could potentially copy the CSV data into a queryable store, that introduces unnecessary steps and contradicts the requirement for analysts to directly query the logs without data movement or pipeline orchestration.
When this WOULD be correct
A company needs to ingest web server logs from multiple sources, transform them (e.g., clean, aggregate), and load the processed data into a data warehouse or lake on a scheduled basis. Azure Data Factory would be the correct choice for building and managing these data pipelines.
- ✓
Azure Synapse Serverless SQL pool
Why this is correct
Azure Synapse Serverless SQL pool is the correct choice because it provides a serverless T-SQL query engine that reads files directly from Azure Data Lake Storage without requiring data to be loaded into a database. It can query terabytes of CSV logs on demand, using compute resources that scale automatically with the amount of data scanned, making it ideal for ad-hoc analysis with zero infrastructure provisioning. The service supports metadata inference for CSV files and integrates with standard T-SQL tools, so analysts can immediately run SQL queries over the raw log data exactly where it is stored.
- ✗
Azure SQL Database
Why it's wrong here
Azure SQL Database is incorrect because it is a fully managed relational database that requires data to be physically imported into tables before any query can execute. The requirement explicitly calls for keeping data in place and running ad-hoc SQL queries on CSV files, but Azure SQL Database would force you to move, transform, and load the terabytes of log data into storage, incurring data movement costs, latency, and ongoing storage charges. Moreover, it is not designed to directly query external files like CSV, so it fails the core 'query in place' requirement.
When this WOULD be correct
For a scenario where structured data is already stored in Azure SQL Database and needs to be queried with complex joins, or when migrating an on-premises SQL Server database to a managed cloud service with minimal changes.
- ✗
Azure HDInsight
Why it's wrong here
HDInsight is a managed cluster service for big data frameworks like Spark and Hadoop, not a serverless SQL query engine. It fails because the analysts need ad-hoc SQL queries without provisioning or managing clusters, and HDInsight requires configuring and scaling an active cluster to run interactive queries. It is tempting because HDInsight supports SQL-like interfaces (e.g., Hive or Spark SQL) and can query CSV files in Data Lake Storage, making it a correct choice for batch processing or ETL workloads where cluster management is acceptable.
When this WOULD be correct
A company needs to run complex, batch-oriented transformations (e.g., ETL) on terabytes of web logs using custom MapReduce or Spark code, and they are willing to manage a Hadoop/Spark cluster. The question would specify the need for distributed processing frameworks like Spark or Hive.
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 Serverless SQL poolCorrect answer▾
Why this is correct
Azure Synapse Serverless SQL pool is the correct choice because it provides a serverless T-SQL query engine that reads files directly from Azure Data Lake Storage without requiring data to be loaded into a database. It can query terabytes of CSV logs on demand, using compute resources that scale automatically with the amount of data scanned, making it ideal for ad-hoc analysis with zero infrastructure provisioning. The service supports metadata inference for CSV files and integrates with standard T-SQL tools, so analysts can immediately run SQL queries over the raw log data exactly where it is stored.
✗Azure Data FactoryWrong answer — click to see why▾
Why this is wrong here
Azure Data Factory is an orchestration and ETL service, not a query engine. It cannot run ad-hoc SQL queries directly on data in Data Lake Storage Gen2; it would require moving or transforming the data first.
★ When this WOULD be the correct answer
A company needs to ingest web server logs from multiple sources, transform them (e.g., clean, aggregate), and load the processed data into a data warehouse or lake on a scheduled basis. Azure Data Factory would be the correct choice for building and managing these data pipelines.
Why candidates choose this
Candidates may confuse Azure Data Factory's data movement and transformation capabilities with querying, or think it can directly execute SQL on files because it supports data flows and mapping data flows.
✗Azure SQL DatabaseWrong answer — click to see why▾
Why this is wrong here
Azure SQL Database requires data to be imported into a relational store, contradicting the requirement to not move data. It cannot directly query CSV files in Data Lake Storage Gen2.
★ When this WOULD be the correct answer
For a scenario where structured data is already stored in Azure SQL Database and needs to be queried with complex joins, or when migrating an on-premises SQL Server database to a managed cloud service with minimal changes.
Why candidates choose this
Candidates may assume SQL Database can query external data sources like CSV files, or they overlook the 'do not move data' constraint, thinking SQL Database is the standard choice for SQL queries.
✗Azure HDInsightWrong answer — click to see why▾
Why this is wrong here
Azure HDInsight is designed for big data processing using Hadoop/Spark clusters, not for ad-hoc SQL queries on CSV files without data movement. It requires provisioning and managing clusters, which contradicts the analysts' preference for simplicity and serverless querying.
★ When this WOULD be the correct answer
A company needs to run complex, batch-oriented transformations (e.g., ETL) on terabytes of web logs using custom MapReduce or Spark code, and they are willing to manage a Hadoop/Spark cluster. The question would specify the need for distributed processing frameworks like Spark or Hive.
Why candidates choose this
Candidates may associate HDInsight with big data and CSV processing, overlooking that it requires cluster management and is not optimized for serverless SQL queries over data in Data Lake Storage.
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
| Model | You Manage | Provider Manages | Examples |
|---|---|---|---|
| IaaS | OS, runtime, apps, data | Hardware, hypervisor, networking | EC2, Azure VMs, GCP Compute Engine |
| PaaS | Apps and data | OS, runtime, middleware, hardware | Elastic Beanstalk, Azure App Service |
| SaaS | Data and settings only | Everything else | Microsoft 365, Salesforce, Workday |
| FaaS / Serverless | Function code only | Infra, scaling, runtime | Lambda, Azure Functions, Cloud Run |
| CaaS | Containers and apps | Kubernetes, OS, hardware | EKS, AKS, GKE |
Go deeper
Related to this question
Learn chapter
Data Roles and Core Concepts
Key term
Data lake
A data lake is a centralized storage repository that holds vast amounts of raw data in its native format until it is needed for analysis.
Key term
Data Lake Storage Gen2
Data Lake Storage Gen2 is a cloud-based storage service that combines a scalable data lake with enterprise-grade file system capabilities for big data analytics.
About these practice questions
One of 820 original DP-900 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
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.