ORACLE 按时间建立分区表

有些项目中可能会涉及到表的分区(有的表大小在70G左右) 下面简单写一下建立分区表过程sql

一、建立测试表

首先建立测试表weihai_test语句以下oracle

create table weihai_test (app

id           int          notnull,less

join_date            DATE);工具

以上表中join_date字段为分区表字段oop

 

二、插入数据

2.一、模拟插入30万条数据

plsql/developer 工具执行测试

declarespa

  i   int := 1;3d

  year VARCHAR2(20);blog

begin

  loop

    year :=CASE mod(i, 3)

             WHEN 0 THEN

              '2015-12-01 00:00:00'

             WHEN 1 THEN

              '2016-12-01 00:00:00'

             ELSE

              '2017-12-01 00:00:00'

            END;

           insert into weihai_test values(i, to_date(year, 'yyyy-mm-dd hh24:mi:ss'));

    exit when i= 300000;

    i := i+ 1;

  end loop;

end;

commit;

 

2.二、查看是否插入成功

select count(1) from weihai_test;

 

 

三、重命名原表,生成临时表

数据插入完成后,重命名原表,这里演示的是停机以后的操做,若是是在线操做,建议使用oracle 在线重定义功能来保障数据不丢失

rename weihai_test to weihai_test_his;  (这个过程只建议应用停机的时候作)

 

四、建立分区表

 

create table weihai_test (

id           int          notnull,

join_date            DATE )

partition by range(join_date)

(

partition weihai_test_2016_less values less than (to_date('2016-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) tablespace fmt,

partition weihai_test_2016 values less than (to_date('2017-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) tablespace fmt,

partition weihai_test_2017 values less than (to_date('2018-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) tablespace fmt,

partition weihai_test_max values less than (to_date('2999-12-31 23:59:59','yyyy-mm-ddhh24:mi:ss')) tablespace fmt

);

 

五、数据转移

表建立完成以后,开始导数,

insert /*+append*/ into weihai_test (

id,

join_date) select

id,

join_date from weihai_test_his;

commit;

 

六、数据对比

导入完成以后,对比两张表的数据,同样就表示导入成功

select count(1) from weihai_test_his;

select count(1) from weihai_test;

 

七、查看执行计划

查询数据,查看执行计划,与临时表weihai_test_his相比较,是否扫描的更少

 

explain plan for select * from weihai_test_his where join_date <= date'2016-01-01';

select plan_table_output from table(dbms_xplan.display());

 

一样的查询在分区表执行一遍

explain plan for select * from weihai_test where join_date <= date'2016-01-01';

select plan_table_output from table(dbms_xplan.display());


相比之下,分区表耗费的资源更少

 

八、删除临时表

数据导入完成以后,drop临时表

drop table weihai_test_his;