Is it possible to partially refresh a materialized view in Oracle?

前端 未结 4 1335
梦如初夏
梦如初夏 2021-01-11 15:44

I have a very complex Oracle view based on other materialized views, regular views as well as some tables (I can\'t \"fast refresh\" it). Most of the time, existing records

4条回答
  •  無奈伤痛
    2021-01-11 15:57

    I have been able to refresh a single partition of a materialized view with partition change tracking.

    It seems to require that the view is created with REFRESH FAST WITH ROWID option and DBMS_MVIEW.REFRESH is called with 'P' method.

提交回复
热议问题