oracle 压缩表测试

oracle 压缩表测试

数据量1000万条;
oracle10g,11g

oracle10g:   alter table big_table_compress nologging;
oracle11g:   ALTER TABLE  BIG_TABLE_COMPRESS NOLOGGING COMPRESS FOR ALL OPERATIONS



默认建表(Hash),

   AVG_ROW_LEN   155

   Size in MB               1728.00
   Number Extents       210 

压缩表:

  AVG_ROW_LEN   156

   Size in MB               464.00
   Number Extents       129

 

 

你可能感兴趣的:(oracle 压缩表测试)