Statistics 执行计划统计信息
----------------------------------------------------------
70 recursive calls --递归调用,越少越好,对其它 SQL 语句的调用。
0 db block gets --从buffer cache 中读取的block 的数据
263735 consistent gets --计算内存,从buffer cache 中读取undo 数据的block 的数量,263735*8192/1024/1024/1024=2G
263567 physical reads -- 计算IO , 从磁盘读取block 的数量,263566*8192/1024/1024/1024=2G
0 redo size --dml 生成的redo 大小
599 bytes sent via SQL*Net to client --服务器发送到客户端的字节总数
519 bytes received via SQL*Net from client --客户机接受的字节数
2 SQL*Net roundtrips to/from client --客户机到服务器之间发生的 sql*net 次数
5 sorts (memory) --在内存执行的排序量
0 sorts (disk) --在磁盘上执行的排序量
1 rows processed --影响数据的行数




