Statistics
----------------------------------------------------------
        276  recursive calls
          3  db block gets
         51  consistent gets
          9  physical reads
          0  redo size
       2039  bytes sent via SQL*Net to client
        503  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          6  sorts (memory)
          0  sorts (disk)
         14  rows processed这些统计结果具体是什么意思???有这块的对应资料看看没??

解决方案 »

  1.   

    276 recursive calls  -- 循环调用次数,比如调用数据字典的次数
    3 db block gets      -- 为了保证数据一致性而额外产生的读取块数,比如在查询执行期间有update
    51 consistent gets   -- 逻辑读次数,完成执行涉及的所有数据块数目
    9 physical reads     -- 物理读次数,逻辑读中在内存没有找到而转到磁盘读取的块数
    0 redo size          -- 产生的归档日志文件块数
    2039 bytes sent via SQL*Net to client  -- 传送给客户端的结果长度
    503 bytes received via SQL*Net from client  -- 从客户端获得的sql长度
    2 SQL*Net roundtrips to/from client  
    6 sorts (memory)        --内存排序次数
    0 sorts (disk)          --磁盘排序次数
    14 rows processed       --结果行数