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

前端 未结 4 1336
梦如初夏
梦如初夏 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 16:02

    You can partition materialized views just as you can with normal tables. Partition your mview by date, and then you can refresh only the required partition.

提交回复
热议问题