I used to work on an ordering system that a company use it to track orders. Because the company process few hundred orders a day, I create two table, one "Past Order" table and one "Recent Order" table.
I first created an append query, the query will open "Recent Order" table, find all records older than 24 hours then add them into "Past Order" table.
Then I created a delete query, the query will find all records older than 24 hours, delete them form "Recent Order" table.
I put this two query into a macro. So, any one can simply run the macro to synchronized these two tables. The "Past Order" contains all records until last 24 hours, the "Recent Order" table contains records made within recent 24 hours.
Because most operations were done on the "Recent Order" table, the normalization was compromised for efficiency.