文档解释
ORA-12077: temporary updatable materialized view log does not exist
Cause: Temporary updatable materialized view log was not created or was dropped.
Action: Re-create the temporary updatable materialized view log. Warning: This will cause a complete refresh of the materialized view.
?
该ORA-12077错误表明你试图创建一个可更新的临时材料视图日志,但它不存在。
官方解释
常见案例
正常处理方法及步骤
1. 首先查找该暂时可更新的材料视图日志是否正确存在,以防你尝试在不存在时创建它。
2. 使用DBMS_MVIEW.DROP_MVL_ON_SNAPSHOT函数以确保临时材料视图是有效的。
3. 使用DBMS_MVIEW.CREATE_MVL_ON_SNAPSHOT函数以创建暂时可更新的材料视图日志。
4. 使用REFRESH子句(method | ON COMMIT)来更新材料视图。