DP-700 · Question #11
You have a Fabric workspace that contains a lakehouse named Lakehouse1. Data is ingested into Lakehouse1 as one flat table. The table contains the following columns. Name Description TransactionID…
The correct answer is B. ProductName C. ProductColor F. ProductID. To create a DimProduct table for a star schema from a flat table, include ProductID, ProductName, and ProductColor as they represent the product's unique identifier and descriptive attributes.
Question
Options
- ADate
- BProductName
- CProductColor
- DTransactionID
- ESalesAmount
- FProductID
How the community answered
(18 responses)- A6% (1)
- B89% (16)
- E6% (1)
Why each option
To create a DimProduct table for a star schema from a flat table, include ProductID, ProductName, and ProductColor as they represent the product's unique identifier and descriptive attributes.
Date is typically a transaction-specific attribute that belongs in the FactSales table, often as a foreign key to a separate DimDate table.
ProductName is a descriptive attribute of the product that clearly belongs in the DimProduct dimension table.
ProductColor is another descriptive attribute of the product that should be included in the DimProduct dimension table.
TransactionID is a unique identifier for each transaction and is a measure that belongs in the FactSales table.
SalesAmount is a measure representing the sales value and belongs in the FactSales fact table.
ProductID is the unique identifier for each product and serves as the natural key or business key within the DimProduct table, essential for linking to the FactSales table.
Concept tested: Dimensional Modeling DimProduct
Source: https://learn.microsoft.com/en-us/power-bi/guidance/star-schema
Topics
Community Discussion
No community discussion yet for this question.