I want to automatically refresh the materialized view after the data is insert to tables when creating a materialized view.
I tried the following code (refresh complete start with Creating materialized view that refreshes every 5 min )but not working. Also this code is solution to refresh to every 1 minute.
I want a solution when inserting data. Is it possible?
Create Materialized view temp_mv
refresh complete start with (sysdate) next (sysdate+1/1440) with rowid as
select * from temp;