Hi there,
I'd like to create a report with a distinct count of users, sum of their pageviews by month, and a derived metric like this:
Time Unique Users Page Views PageViews/User
Oct 2003 1,000,000 5,000,000 5
Nov 2003 2,000,000 9,000,000 4.5
...and then allow users to drill to week or day, again showing a distinct count of users and the sum of pageviews.
Can I implement weekly and monthly aggegate tables, with MSTR being smart enough not to sum on unique users as I drill up by date, since I need a distinct count? Otherwise, I could have the queries run dynamically each time, but that involves millions of rows. Any thoughts?
Much appreciated,
26point2
I'd like to create a report with a distinct count of users, sum of their pageviews by month, and a derived metric like this:
Time Unique Users Page Views PageViews/User
Oct 2003 1,000,000 5,000,000 5
Nov 2003 2,000,000 9,000,000 4.5
...and then allow users to drill to week or day, again showing a distinct count of users and the sum of pageviews.
Can I implement weekly and monthly aggegate tables, with MSTR being smart enough not to sum on unique users as I drill up by date, since I need a distinct count? Otherwise, I could have the queries run dynamically each time, but that involves millions of rows. Any thoughts?
Much appreciated,
26point2