Courseiva

DP-900 Practice Question: Describe considerations for working with non-relational data on Azure

A company stores IoT sensor data in Azure Blob Storage. The data is structured as JSON files organized by date. Data scientists need to query this data using SQL statements without moving it. Which Azure service should they use to enable this?

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

Azure Synapse Serverless SQL enables querying JSON files directly in Azure Blob Storage using T-SQL without moving the data. Option A (Azure SQL Database) is a relational database that requires data to be loaded into tables. Option B (Azure Data Lake Storage Gen2) is a storage layer, not a query service. Option C (Azure Cosmos DB) is a NoSQL database that can store JSON but requires moving data from Blob Storage.

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 Database

    Why it's wrong here

    Azure SQL Database is a managed, schema-bound relational database service. It does not provide a way to connect to IoT JSON files in Azure Blob Storage and query them directly; you would first have to import or load the data into tables before running T-SQL queries. This makes it unsuitable when the requirement is to query files in place without moving data.

  • Azure Data Lake Storage Gen2

    Why it's wrong here

    Azure Data Lake Storage Gen2 is a storage solution built on Blob Storage that adds a hierarchical namespace for organizing directories and files. It gives you a file-based data lake, but it has no query engine of its own: it cannot parse or return results from the IoT JSON files you store in it, unlike a true analytics service.

  • Azure Cosmos DB

    Why it's wrong here

    Azure Cosmos DB is a globally distributed, multi-model NoSQL database that stores data as items inside containers and supports querying through its own SQL-like API or SDKs. It does not attach to Azure Blob Storage, so it cannot read or query your IoT sensor JSON files where they reside in Blob Storage. Therefore, Cosmos DB is a data store for applications, not a serverless query service for external blobs.

  • Azure Synapse Serverless SQL

    Why this is correct

    Azure Synapse Serverless SQL is the appropriate choice because its OPENROWSET function can query JSON (or CSV/Parquet) files directly in Azure Blob Storage or Azure Data Lake Storage Gen2 using T-SQL. It does this without requiring you to import the data into a database or provision a dedicated SQL pool, and it uses a pay-per-query model. This lets you run ad hoc analytics on IoT sensor data in place, exactly matching the requirement.

Quick reference

Azure Blob Storage Tier Comparison

TierStorage CostRetrieval CostLatencyUse Case
HotHighestLowestImmediateActive data, frequent reads
CoolLowerHigherImmediateData accessed < once / month
ColdLower stillHigherImmediateData accessed < once / quarter
ArchiveLowestHighest + rehydration delayHoursLong-term compliance retention

Go deeper

Related to this question

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 →

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.