Oracle 11g表的碎片率诊断

Oracle 11g表的碎片率诊断

在Oracle中,有些表由于频繁的插入和删除数据,导致高水位过高,表的碎片也很高,如何判断呢? drop table test purge; create table test as select * from dba_objects; insert into test select * from test; insert into test select * from test; commit

Oracle 11g索引的碎片分析

Oracle 11g索引的碎片分析

数据被删除之后,索引只是加了一个标记,并没有真正的删除,这样可以查看碎片率。 drop table test purge; create table test as select * from dba_objects; insert into test select * from test; insert into test select * from test; commit; create

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部