ORA-32313: REFRESH FAST of “string”.”string” unsupported after PMOPs

文档解释

ORA-32313: REFRESH FAST of “string”.”string” unsupported after PMOPs

Cause: A Partition Maintenance Operation (PMOP) has been performed on a detail table, and the specified materialized view does not support fast refersh after PMOPs.

Action: Use REFRESH COMPLETE. Note: you can determine why your materialized view does not support fast refresh after PMOPs using the DBMS_MVIEW.EXPLAIN_MVIEW() API.

ORA-32313错误表示当使用语句“REFRESH FAST”对给定用户使用给定物化视图进行“启动增量刷新(PMOPs)”时出错。

官方解释

ORA-32313:当使用 PMOPs 尝试进行启动增量刷新时,不支持’REFRESH FAST’与指定的用户和物化视图的组合。

常见案例

一般处理方法及步骤

1.确定错误的发生原因。

2.删除以前关联的保存点,在删除后重新尝试刷新。

3.修改REFRESH FAST语句,使其与PMOPs兼容。

4.运行完整刷新,而不是启动增量刷新。

5.请参阅原始创建物化视图时的启动参数,并对其进行必要的修改,以使其与PMOPs兼容。

你可能感兴趣的