清理sga组件

有时候我们需要清理sga的buffer_cache和shared_pool这2个组件,以保障每次调试sql语句的背景条件大致均衡。
可以使用如下命令:
SQL> alter system flush shared_pool;
System altered
SQL> alter system flush buffer_cache;
System altered

相关的块cache视图V$BH,status有两个值:xcur和free,xcur表示被cache到sga中,free则表示没有被cache到sga中.
-The End-

你可能感兴趣的:(SGA)