Question 506 of 846
Design and implement data storagemediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that the table is read-only. This is because an Azure Synapse serverless SQL external table provides a relational abstraction over data stored externally, such as in Azure Data Lake Storage Gen2 or Blob Storage, without moving or copying it into a managed storage engine. The serverless SQL pool uses the OPENROWSET or CREATE EXTERNAL TABLE syntax to read files in place, meaning you can only query the data with T-SQL; any attempt to perform INSERT, UPDATE, DELETE, or DDL modifications on the underlying data through the external table will fail. On the Microsoft Azure Data Engineer Associate DP-203 exam, this concept tests your understanding of the fundamental architectural constraint that serverless SQL pools are compute-only, with no local storage for data manipulation—a common trap is assuming you can write to external tables as you would in a dedicated SQL pool. To remember this, think of the mnemonic “SERVE” for Serverless External tables are Read-Only, Virtual, and Ephemeral: they serve data but never store it.

DP-203 Design and implement data storage Practice Question

This DP-203 practice question tests your understanding of design and implement data storage. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.

Exhibit

Refer to the exhibit.

CREATE EXTERNAL DATA SOURCE MyDataSource
WITH (
  LOCATION = 'abfss://container@storageaccount.dfs.core.windows.net',
  TYPE = HADOOP,
  CREDENTIAL = MyCredential
);

CREATE EXTERNAL FILE FORMAT ParquetFormat
WITH (
  FORMAT_TYPE = PARQUET,
  DATA_COMPRESSION = 'org.apache.hadoop.io.compress.SnappyCodec'
);

CREATE EXTERNAL TABLE dbo.Sales
(
  SaleID INT,
  ProductID INT,
  Quantity INT,
  SaleDate DATE
)
WITH (
  LOCATION = '/sales/',
  DATA_SOURCE = MyDataSource,
  FILE_FORMAT = ParquetFormat
);

Refer to the exhibit. A data engineer creates an external table in Azure Synapse Serverless SQL. Which statement about this table is correct?

Question 1mediummultiple choice
Full question →

Exhibit

Refer to the exhibit.

CREATE EXTERNAL DATA SOURCE MyDataSource
WITH (
  LOCATION = 'abfss://container@storageaccount.dfs.core.windows.net',
  TYPE = HADOOP,
  CREDENTIAL = MyCredential
);

CREATE EXTERNAL FILE FORMAT ParquetFormat
WITH (
  FORMAT_TYPE = PARQUET,
  DATA_COMPRESSION = 'org.apache.hadoop.io.compress.SnappyCodec'
);

CREATE EXTERNAL TABLE dbo.Sales
(
  SaleID INT,
  ProductID INT,
  Quantity INT,
  SaleDate DATE
)
WITH (
  LOCATION = '/sales/',
  DATA_SOURCE = MyDataSource,
  FILE_FORMAT = ParquetFormat
);

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

The table is read-only

External tables in Azure Synapse Serverless SQL are read-only because they provide a relational abstraction over data stored externally (e.g., in Azure Data Lake Storage Gen2 or Blob Storage). You cannot perform INSERT, UPDATE, DELETE, or DDL modifications on the underlying data through the external table; it is designed solely for querying with T-SQL. This is a fundamental constraint of the serverless SQL pool architecture, which uses the OPENROWSET or CREATE EXTERNAL TABLE syntax to read files in place without a storage engine.

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.

  • The table supports indexing for performance

    Why it's wrong here

    External tables in serverless SQL do not support indexes.

  • The external data source TYPE must be 'HADOOP' for Azure Data Lake Storage Gen2

    Why it's wrong here

    TYPE=HADOOP is acceptable; it's not incorrect.

  • The table references a single Parquet file named 'Sales.parquet'

    Why it's wrong here

    LOCATION='/sales/' is a folder, not a single file.

  • The table is read-only

    Why this is correct

    External tables are read-only; modifications must be done to underlying files.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates confuse external tables in Synapse Serverless SQL with external tables in dedicated SQL pools (which also support PolyBase with Hadoop connectors) and mistakenly think they can write to or index the table, or they misremember the required data source TYPE for ADLS Gen2.

Detailed technical explanation

How to think about this question

Under the hood, Synapse Serverless SQL uses a distributed query engine that pushes down filters and aggregations to the storage layer (e.g., Parquet row group pruning) but never materializes data into the SQL pool. This means external tables are ideal for data lake exploration and ELT staging where you need to query raw files without moving them, but they cannot be used for transactional workloads. A real-world scenario is using an external table to join sales data from multiple Parquet partitions (e.g., by date) with a reference table in a dedicated SQL pool, where the external table is strictly read-only.

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-203 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-203 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-203 question test?

Design and implement data storage — This question tests Design and implement data storage — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The table is read-only — External tables in Azure Synapse Serverless SQL are read-only because they provide a relational abstraction over data stored externally (e.g., in Azure Data Lake Storage Gen2 or Blob Storage). You cannot perform INSERT, UPDATE, DELETE, or DDL modifications on the underlying data through the external table; it is designed solely for querying with T-SQL. This is a fundamental constraint of the serverless SQL pool architecture, which uses the OPENROWSET or CREATE EXTERNAL TABLE syntax to read files in place without a storage engine.

What should I do if I get this DP-203 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

1 more ways this is tested on DP-203

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 are examining a T-SQL script that creates an external table in Azure Synapse serverless SQL pool. The query SELECT * FROM dbo.Sales returns zero rows, but the folder /year=2024/ in ADLS Gen2 contains Parquet files. What is the most likely cause?

hard
  • A.The credential used to access ADLS Gen2 does not have sufficient permissions.
  • B.The serverless SQL pool does not support reading Parquet files.
  • C.The external table definition is missing the SCHEMA_NAME parameter.
  • D.The DATA_COMPRESSION setting is incompatible with Parquet files.

Why A: Option A is correct because the most common reason for SELECT * FROM an external table returning zero rows despite data existing in the underlying ADLS Gen2 folder is that the serverless SQL pool lacks the necessary permissions to read the Parquet files. The credential used in the external data source must have at least 'Storage Blob Data Reader' role on the storage account or the container, and the identity (e.g., SAS token, service principal, or managed identity) must be correctly configured. Without this, the query executes successfully but returns no rows because the pool cannot access the data.

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-203 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-203 exam.