The Impressions table contains approximately 30 million records per month.
You need to create an ad analytics system to meet the following requirements:
Present ad impression counts for the day, campaign, and Site_name. The analytics for the last year
are required.
Minimize the data model size.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.B tbh, relationships let you slice/filter across tables without copying tons of data. C is efficient for counting since measures barely add to model size. D looks tempting for pre-aggregating but actually bloats memory. I think B and C are made for the minimize size angle, not D. Disagree?