Parse to Excute Ratio可能是指语句解析时间与执行时间的比例吧
这些应该都不是直接修改的,应该是一个参考的性能参数

解决方案 »

  1.   

    ALTER TABLE  emp PCTFREE 30
      

  2.   

    默认是10。
    可以用select table_name, pct_free from user_tables ;查看
      

  3.   

    这下晕了,怎么一个表一个pctfree啊,那我还可以针对每个表设置不同的值???那上面的那个警告是针对……ps:刚刚找到了关于pctfree的解释:)
      

  4.   

    每张表的pctfree 都可以不一样。
      

  5.   

    to 菜鸟,平淡:) 
       能不能告知pctfree的解释阿,谢谢 :)
      

  6.   

    我是菜鸟。
    PCTFREE integer
    Specify the percentage of space in each data block of the table, object table OID index, or partition reserved for future updates to the table's rows. The value of PCTFREE must be a value from 0 to 99. A value of 0 means that the entire block can be filled by inserts of new rows. The default value is 10. This value reserves 10% of each block for updates to existing rows and allows inserts of new rows to fill a maximum of 90% of each block. 指定表的每个数据块的空间百分比,对象表OID索引,或者为将来表的行的更新保留的分区。