Query the user schema to obtain useful information in the user database tables detailed here in a schema diagram.
SELECT c.date_of_trans as Date, count(distinct(b.id)) as NumUsers FROM user_transaction_fact a, user_dimension b, date_dimension c, etl_job d WHERE a.user_key=b.user_key and a.trans_date_key=c.date_key and a.job_key=d.job_key and d.status=1 and c.date_of_trans >= '2012-12-17' and c.date_of_trans <= '2012-12-21' GROUP BY c.date_of_trans
SELECT c.date_of_trans as Date, b.username as UserName FROM user_transaction_fact a, user_dimension b, date_dimension c, etl_job d WHERE a.user_key=b.user_key and a.trans_date_key=c.date_key and a.job_key=d.job_key and d.status=1 and c.date_of_trans >= '2012-12-17' and c.date_of_trans <= '2012-12-21' GROUP BY c.date_of_trans, b.username