I have a problem where I have large database that take very long time to access partly because its normalized and requires a lot of joins (its very similar to start schema right now). However, I don't care about write time/potential write anomalies and need the database to be fast for analysis Can someone please point me to good text for database schemas that are well suited for analytics and not so much for online performance?
E.g. tables: 1 table has static product information and table 2 has instances of all the times the product was bought/viewed/... certain n actions done on it, and cost payed for each such action. A lot of my work involves finding certain products on which certain actions were done.
Thanks.