文档解释
ORA-12070: cannot offline instantiate materialized view “string”.”string”
Cause: Offline instantiation does not support materialized views using the following options:
o ON PREBUILT TABLE
o BUILD DEFERRED
Action: Remove the invalid options.
。
ORA-12070错误表明无法离线实例化某个特定的物化视图。官方的解释是:在试图修改或捕获新的列时物化视图的定义被修改了,因此在试图离线实例化物化视图时发生了错误。
常见的案例就是在实例化的离线物化视图时,物化视图的定义发生改变。
正常的处理方法是首先运行命令:“ALTER MATERIALIZED VIEW REFRESH ON DEMAND”;将物化视图置为离线模式。然后,你可以在物化视图上使用“INSTANTIATE”来实例化离线物化视图。