Forum Discussion
Anonymous
3 years agoNot applicable
Snowflake Schema to Handle Different Fact Table Grains
Hi There, Is it bad practice to snowflake a dimension to handle different grains on fact tables? For example, I have two fact tables: fact_sales, and fact_sales_targets. The first is at the day g...
- 3 years ago
In general, I think it is a good practice. The additional DimMonth table may take some but very limited storage but it saves the DAX code, saving the processing CPU.
FreemanZ
Super User
3 years agoIn general, I think it is a good practice. The additional DimMonth table may take some but very limited storage but it saves the DAX code, saving the processing CPU.
- Anonymous3 years agoNot applicable
Thank you. I expected this, but every example I could find online had bad examples only for why you should not snowflake the model. This situation was not included.