--超级大表最好使用分区来实现.这样你在查询的时候Oracle就可以确定范围从而在一个确定的分区来查找数据,从而提高了你的查询效率.create table Tb_test
(.................)
partition by range(分区字段)
(   
          partition pt_01 values less than 100
                tablespace tablespace_01
          partition pt_02 values less than 200
                tablespace tablespace_02
          partition pt_03 values less than 300
                tablespace tablespace_03
)