在oracle每月26日刷新物化视图

时间:2015-07-13 10:01:37

标签: sql oracle

我有一个基于表temp的物化视图temp_mv。我想每个月26日刷新这个物化视图。请建议。

syntex是:

Create Materialized view temp_mv
refresh complete start with (sysdate) next  (sysdate+1/1440) with rowid
as select * from temp;

此物化视图每分钟刷新一次。

请建议。

1 个答案:

答案 0 :(得分:1)

Create Materialized view temp_mv
refresh complete start with (sysdate) next (add_months(trunc(sysdate,'mm'),1)+25)+0.5/24 with rowid
as select * from temp;