We are storing about 5 to 10 million events each year and now build a datamart that separates operational data out. My question:
- Would you move the logged events from a given year and store it in a data mart than delete the "event table" and start all over?
- Create a new table for each year where you store the events for a
given year i.e.
INSERT INTO 2011_actionrecord action
= 'whathappened' etc.INSERT INTO 2012_actionrecord action
= 'whathappened' etc. - Or do something else?
Thanks much