12.2 删除物化视图的是hang住了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12.2 删除物化视图的是hang住了相关的知识,希望对你有一定的参考价值。
在drop mv 的时候如果hang住,可以启用10046进行跟踪,看其操作究竟是卡在哪一步?而我这一次遇到的场景,是卡在delete sys.mvref$_change_stats.这个表如果数据量达到百万以上,基本就很大可能出现性能问题,可以做清理。(执行语句:delete from sys.mvref$_change_stats where refresh_id=:B2 and mv_obj#=:B1)
解决办法:
truncate table mvref$_stats;
truncate table mvref$_run_stats;
truncate table mvref$change_stats;
truncatea table mvref$_stmt_stats;
exec dbms_mview_stats.set_system_default(‘COLLECTION_LEVEL‘,‘NONE‘);
以上是关于12.2 删除物化视图的是hang住了的主要内容,如果未能解决你的问题,请参考以下文章