मैंने उन चरणों में प्रदर्शित किया है जहां एक भौतिक दृश्य हर one minute
के बाद ताज़ा हो जाता है , 5 मिनट के बाद रीफ्रेश होने वाले एमवी के लिए next(sysdate+5/1440)
का उपयोग करें
Step1:
Create table temp (A int);
Step2:
Create Materialized view temp_mv
refresh complete start with (sysdate) next (sysdate+1/1440) with rowid
as select * from temp;
चरण 3:
select count(*) from temp;
COUNT(*)
----------
0
Step4:
select count(*) from temp_mv;
COUNT(*)
----------
0
Step5:
begin
for i in 1..10 loop
insert into temp values (i+1);
end loop;
end;
/
चरण 6:
commit;
Step7:
select count(*) from temp;
COUNT(*)
----------
10
Step8:
select count(*) from temp_mv;
COUNT(*)
----------
0
Step9:
select to_char(sysdate,'hh:mi') from dual;
TO_CH
-----
04:28
Step10:
select to_char(sysdate,'hh:mi') from dual;
TO_CH
-----
04:29
Step11:
select count(*) from temp;
COUNT(*)
----------
10
Step12:
select count(*) from temp_mv;
COUNT(*)
----------
10