Which statement accurately describes the dbo.FactInternetSales table?

Posted by: Pdfprep Category: DP-300 Tags: , ,

You have an Azure Synapse Analytics dedicated SQL pool.

You run PDW_SHOWSPACEUSED(‘dbo.FactInternetSales’); and get the results shown in the following table.

Which statement accurately describes the dbo.FactInternetSales table?
A . The table contains less than 10,000 rows.
B . All distributions contain data.
C . The table uses round-robin distribution
D . The table is skewed.

Answer: D

Explanation:

The rows per distribution can vary up to 10% without a noticeable impact on performance.

Here the distribution varies more than 10%. It is skewed.

Note: SHOWSPACEUSED displays the number of rows, disk space reserved, and disk space used for a specific table, or for all tables in a Azure Synapse Analytics or Parallel Data Warehouse database.

This is a very quick and simple way to see the number of table rows that are stored in each of the 60 distributions of your database. Remember that for the most balanced performance, the rows in your distributed table should be spread evenly across all the distributions.

ROUND_ROBIN distributed tables should not be skewed. Data is distributed evenly across the nodes by design.

Reference:

https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-tables-distribute

https://github.com/rgl/azure-content/blob/master/articles/sql-data-warehouse/sql-data-warehouse-manage-distributed-data-skew.md

Leave a Reply

Your email address will not be published.