oracle 统计信息各指标意义
1.recursive calls 递归调用
如数据字典的调用,或是存储过程的过程调用
2. db blocks gets 内存数据块读取(逻辑读)
buffer cache 里数据读取
3.consistent gets 一致性读(逻辑读)
数据有修改操作,undo 空间构造CR块,保证一致性读取。
4.physical reads 物理读
从磁盘读取数据的消耗
1.recursive calls 递归调用
如数据字典的调用,或是存储过程的过程调用
2. db blocks gets 内存数据块读取(逻辑读)
buffer cache 里数据读取
3.consistent gets 一致性读(逻辑读)
数据有修改操作,undo 空间构造CR块,保证一致性读取。
4.physical reads 物理读
从磁盘读取数据的消耗