Oracle 分区表——Range分区

本博文少许理论资料来至DBA技术大牛http://blog.csdn.net/tianlesoftware/article/details/4717318,本着实践式学习,书写以下博文:


一、什么是分区表
       Oracle提供了分区技术以支持VLDB(Very Large DataBase)。分区表通过对分区列的判断,把分区列不同的记录,放到不同的分区中。分区完全对应用透明。

       Oracle的分区表可以包括多个分区,每个分区都是一个独立的段(SEGMENT),可以存放到不同的表空间中。查询时可以通过查询表来访问各个分区中的数据,也可以通过在查询时直接指定分区的方法来进行查询。

 二、什么时候用分区表
When to Partition a Table什么时候需要分区表,官网的2个建议如下:

(1)Tables greater than 2GB should always be considered for partitioning.

(2)Tables containing historical data, in which new data is added into the newest partition. A typical example is a historical table where only the current month's data is updatable and the other 11 months are read only.

三、分区表优点

       (1)由于将数据分散到各个分区中,减少了数据损坏的可能性;

       (2)可以对单独的分区进行备份和恢复;

       (3)可以将分区映射到不同的物理磁盘上,来分散IO;

       (4)提高可管理性、可用性和性能。

四、分区表类型
       (1)范围分区(range)——我们这篇博文的内容;

       (2)哈希分区(hash);

       (3)列表分区(list);

       (4)范围-哈希复合分区(range-hash);

       (5)范围-列表复合分区(range-list)。

 

五、Range分区
  Range分区是应用范围比较广的表分区方式,它是以列的值的范围来做为分区的划分条件,将记录存放到列值所在的range分区中。

       如按照时间划分,2010年1月的数据放到a分区,2月的数据放到b分区,在创建的时候,需要指定基于的列,以及分区的范围值。

       在按时间分区时,如果某些记录暂无法预测范围,可以创建maxvalue分区,所有不在指定范围内的记录都会被存储到maxvalue所在分区中。

六、Range分区实例说明
例子:创建一张表,表有两个字段(ID、TIME),我们完成对TIME列的范围分区,即将1-12月创建成对应的12个分区表,对分区表及分区表数据进行增删查改操作。
创建分区表:
创建表同时完成对表进行分区(按月份分区)

 /*创建分区表*/
create table pdba (id number, time date) partition by range (time)
(
    partition p1 values less than (to_date('2013-02-1', 'yyyy-mm-dd')),
    partition p2 values less than (to_date('2013-03-1', 'yyyy-mm-dd')),
    partition p3 values less than (to_date('2013-04-1', 'yyyy-mm-dd')),
    partition p4 values less than (to_date('2013-05-1', 'yyyy-mm-dd')),
    partition p5 values less than (to_date('2013-06-1', 'yyyy-mm-dd')),
    partition p6 values less than (to_date('2013-07-1', 'yyyy-mm-dd')),
    partition p7 values less than (to_date('2013-08-1', 'yyyy-mm-dd')),
    partition p8 values less than (to_date('2013-09-1', 'yyyy-mm-dd')),
    partition p9 values less than (to_date('2013-10-1', 'yyyy-mm-dd')),
    partition p10 values less than (to_date('2013-11-1', 'yyyy-mm-dd')),
    partition p11 values less than (to_date('2013-12-1', 'yyyy-mm-dd')),
    partition p12 values less than (to_date('2014-01-1', 'yyyy-mm-dd'))
    --partition p13 values less than (maxvalue)    --不建议使用
)


查询所有分区表,验证分区表是否创建成功。

select * from ALL_TAB_PARTITIONS a --不能加任何where条件

结果如下图:


添加数据:

为了测试效果,我们添加120万条数据,每月添加10万条数据:

/*添加数据*/
declare   
begin  
          for n in 1..100000 LOOP  
                    -- insert into sale_data select * from sale_data;
                        insert into pdba VALUES(1,to_date('2013-01-05','yyyy-mm-dd'));
                        insert into pdba VALUES(2,to_date('2013-02-05','yyyy-mm-dd'));
                        insert into pdba VALUES(3,to_date('2013-03-05','yyyy-mm-dd'));
                        insert into pdba VALUES(4,to_date('2013-04-05','yyyy-mm-dd'));
                        insert into pdba VALUES(5,to_date('2013-05-05','yyyy-mm-dd'));
                        insert into pdba VALUES(6,to_date('2013-06-05','yyyy-mm-dd'));
                        insert into pdba VALUES(7,to_date('2013-07-05','yyyy-mm-dd'));
                        insert into pdba VALUES(8,to_date('2013-08-05','yyyy-mm-dd'));
                        insert into pdba VALUES(9,to_date('2013-09-05','yyyy-mm-dd'));
                        insert into pdba VALUES(10,to_date('2013-10-05','yyyy-mm-dd'));
                        insert into pdba VALUES(11,to_date('2013-11-05','yyyy-mm-dd'));
                        insert into pdba VALUES(12,to_date('2013-12-05','yyyy-mm-dd'));
     end loop;   
end; 

测试数据是否添加正确:
先查看物理表记录:
/*验证*/
select count(*) from pdba
结果如下图:


再随机查看分区表,数据, 比如我们查看12月份的分区表数据,理论应该是10W条。

/*分区表查询*/
select count(*) from pdba partition(p12)  --一月份

结果如下图:
       

至此我们创建、验证、并向表中添加数据 完成。

查询分区表:

--------------------- 
作者:子扬同学 
来源:CSDN 
原文:https://blog.csdn.net/rly101112/article/details/11682417 
版权声明:本文为博主原创文章,转载请附上博文链接!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值