exam questions

Exam DP-203 All Questions

View all questions & answers for the DP-203 exam

Exam DP-203 topic 4 question 50 discussion

Actual exam question from Microsoft's DP-203
Question #: 50
Topic #: 4
[All DP-203 Questions]

You have an Azure Synapse Analytics dedicated SQL pool named Pool1. Pool1 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?

  • A. Connect to the built-in pool and query sys.dm_pdw_nodes_db_partition_stats.
  • B. Connect to Pool1 and run DBCC PDW_SHOWSPACEUSED.
  • C. Connect to Pool1 and query sys.dm_pdw_node_status.
  • D. Connect to the built-in pool and query sys.dm_pdw_sys_info.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Nidie
Highly Voted 1 year, 10 months ago
Selected Answer: B
I think it is B , same question in the previous pages
upvoted 5 times
...
renan_ineu
Most Recent 8 months, 3 weeks ago
Another explanation to support option B as the most appropriate: To analyze data skew specifically in a dedicated SQL pool, you should use sys.dm_pdw_nodes_db_partition_stats. The option says "connect to the built-in", but built-in is Serverless and this view is not available for querying from Serverless, even against a Dedicated pool. Option B (DBCC PDW_SHOWSPACEUSED) is a valid alternative but provides less detailed information about data skew compared to sys.dm_pdw_nodes_db_partition_stats. It is meant to show the space used, as the command implies, but may give an idea about skew.
upvoted 2 times
...
Danweo
10 months, 3 weeks ago
Selected Answer: B
The built in pool is serverless, we cannot use those A's DMV is not supported by serverless pools, https://learn.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-db-partition-stats-transact-sql?toc=%2Fazure%2Fsynapse-analytics%2Fsql-data-warehouse%2Ftoc.json&bc=%2Fazure%2Fsynapse-analytics%2Fsql-data-warehouse%2Fbreadcrumb%2Ftoc.json&view=azure-sqldw-latest&preserve-view=true
upvoted 1 times
...
evangelist
10 months, 3 weeks ago
Selected Answer: B
Explanation: To identify the extent of data skew in a table within an Azure Synapse Analytics dedicated SQL pool, the DBCC PDW_SHOWSPACEUSED command is most appropriate. This command provides information about space usage and data distribution, which can help identify skew. You need to connect to the specific pool (Pool1) to run this command.
upvoted 1 times
...
Alongi
1 year, 2 months ago
Selected Answer: B
B is correct
upvoted 2 times
...
Trulysme
1 year, 6 months ago
Answere B Topic 4 #36 and #38
upvoted 2 times
...
kkk5566
1 year, 9 months ago
Selected Answer: B
REPETED,B is correct
upvoted 3 times
...
patjoo
1 year, 9 months ago
Selected Answer: B
It is indeed B: https://learn.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-tables-distribute#determine-if-the-table-has-data-skew
upvoted 3 times
MBRSDG
1 year, 2 months ago
...no. Please read better the resource: "Create the view dbo.vTableSizes that is shown in the Tables overview article." the article --> https://learn.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-tables-overview#table-size-queries The cited view indeed uses dm_pdw_nodes_db_partition_stats, so A is the correct answer, not B.
upvoted 1 times
...
MBRSDG
1 year, 2 months ago
"However, using DBCC commands can be quite limiting. Dynamic management views (DMVs) show more detail than DBCC commands."
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...