相对的。
 有个帖子比较好的说明了这些参数的意思: http://www.chinageren.com/jc/HTML/120239.html

解决方案 »

  1.   

    以下是oracle 9i sql* plus user guide and reference中的说明:
      -----------------------------------------
     recursive calls Number of recursive calls generated at both the user and    system level. Oracle maintains tables used for internal
        processing. When Oracle needs to make a change to
        these tables, it internally generates an internal SQL
        statement, which in turn generates a recursive call.db block gets
         Number of times a CURRENT block was requested.
    consistent gets
         Number of times a consistent read was requested for a block
    physical reads
         Total number of data blocks read from disk. This number equals the value of "physical reads direct" plus all reads 
         into buffer cache.
    redo size
         Total amount of redo generated in bytes
    bytes sent via SQL*Net to client
         Total number of bytes sent to the client from the foreground processes.
    bytes received via SQL*Net from client
         Total number of bytes received from the client overOracle Net.
    SQL*Net roundtrips to/from client
         Total number of Oracle Net messages sent to and received from the client
    sorts (memory)
         Number of sort operations that were performed completely in memory and did not require any disk
         writes
    sorts (disk)
         Number of sort operations that required at least one disk write
    rows processed
          Number of rows processed during the operation    意思自己看,翻译得累!
      

  2.   

    我想知道哪些值大了对SQL执行效率影响比较大.consistent gets和physical reads吗
      

  3.   

    具体情况分析,我觉得还是Physical Reads,以及sort Disk. 随着环境的不同,每个都可能很关键。