Oracle materialized view question
问题 I have a table that holds information about different events, for example CREATE TABLE events ( id int not null primary key, event_date date, ... ) I realized that 90% of all queries access only today events; the older rows are stored for history and eventually moved to an archive table. However, events table is still large, and I wonder if I can improve the performance by creating a materialized view that has something like WHERE event_date = trunc(sysdate) and maybe index on event_date ? Is