DP-203 Exam QuestionsBrowse all questions from this exam

DP-203 Exam - Question 325


You have an Azure Synapse Analytics dedicated SQL pool named Pool1 and a database named DB1. DB1 contains a fact table named Table1.

You need to identify the extent of the data skew in Table1.

What should you do in Synapse Studio?

Show Answer
Correct Answer: AD

To identify the extent of data skew in Table1 within an Azure Synapse Analytics dedicated SQL pool, you should connect to Pool1 and query the sys.dm_pdw_nodes_db_partition_stats dynamic management view. This system view provides detailed information about data distribution across the different nodes, which is essential for analyzing data skew.

Discussion

17 comments
Sign in to comment
Ngol
Jan 16, 2023

I don't understand why Exam Topics should be giving different answers for questions they have repeated...like this one!

anks84Option: D
Sep 7, 2022

Correct answer is D.

vrodriguespOption: D
Jan 17, 2023

Answer is not so clear!, because I can't see any refernece on built-in pool. What is built-in pool? Anyway looking at the doc here: https://learn.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-db-partition-stats-transact-sql?view=sql-server-ver16 that claims: "This syntax is not supported by serverless SQL pool in Azure Synapse Analytics." So if built-in pool is serverless SQL pool the correct answer should be D (Connect to Pool1 and query sys.dm_pdw_nodes_db_partition_stats).

zizonesolOption: D
Mar 16, 2023

We had the same question before. The correct answer is D

dimbriciOption: D
Nov 14, 2022

Questione already seen

OldSchoolOption: D
Nov 16, 2022

It can't be A and B because those two are connecting to Built-In pool (serverless) and the Q is about dedicated pool.

OldSchool
Dec 5, 2022

If it is the mistake in wording the question and instead of dedicated is serverless, then the answer is A.

Vikram1710Option: A
Mar 1, 2023

Option A is confusing as we have different answer for same question.

bp_a_userOption: D
Apr 29, 2023

Its D! Official Learning path:Returns page and row-count information for every partition in the current database. nodes_db_partition_stats https://learn.microsoft.com/en-us/training/modules/analyze-optimize-data-warehouse-storage-azure-synapse-analytics/2-understand-skewed-data-space-usage

kkk5566Option: D
Sep 1, 2023

repetd

ShrikantWOption: D
Dec 19, 2023

D is the correct answer!

dakku987Option: D
Jan 10, 2024

D. Connect to Pool1 and query sys.dm_pdw_nodes_db_partition_stats. bcz its connect to pool1

j888Option: A
Feb 20, 2024

A built-in pool usually means a dedicated SQL pool, I think A will be my choice.

j888
Feb 20, 2024

On second thought the word 'pool1' is more definitive than the simple term 'built-in'. So D is correct

ArdiShahOption: D
Feb 28, 2024

In this series of question, we had the same question and correct answer was D.

ArdiShah
Feb 28, 2024

D is correct

MBRSDGOption: A
Apr 2, 2024

Correct, you can only launch DMV and DBCC from built-in, not from pool1

learnwellOption: D
Jun 28, 2024

sys.dm_pdw_nodes_db_partition_stats is a system view in Azure Synapse Analytics dedicated SQL pool that provides statistics about the distribution of data across distributions (similar to nodes or segments) within the pool. A is not an option because there's no specific concept of a "built-in pool" in Azure Synapse Analytics dedicated SQL pool context. You connect directly to the SQL pool instance (like Pool1) to execute commands.

evangelistOption: D
Jun 29, 2024

Built-in Pool Limitation: The built-in pool in Synapse Analytics is typically used for on-demand SQL queries and doesn't have access to the detailed statistics of the dedicated SQL pool's partitioned tables.

evangelistOption: D
Jul 16, 2024

To identify the extent of data skew in a table within an Azure Synapse Analytics dedicated SQL pool, you should connect to the specific pool (Pool1) and query the sys.dm_pdw_nodes_db_partition_stats dynamic management view. This view provides detailed information about data distribution across nodes, which is essential for identifying skew.