oracle 定时器时间分区_ORACLE 按时间创建分区表

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

1、创建测试表

首先创建测试表weihai_test语句如下

create table weihai_test (

id           int          notnull,

join_date            DATE);

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

2、插入数据

2.1、模拟插入30万条数据

plsql/developer 工具执行

declare

i   int := 1;

year VARCHAR2(20);

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.2、查看是否插入成功

select count(1) from weihai_test;

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

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

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

4、创建分区表

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

);

5、数据转移

表创建完成之后,开始导数,

insert /*+append*/ into weihai_test (

id,

join_date) select

id,

join_date from weihai_test_his;

commit;

6、数据对比

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

select count(1) from weihai_test_his;

select count(1) from weihai_test;

7、查看执行计划

查询数据,查看执行计划,与临时表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());

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

8、删除临时表

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

drop table weihai_test_his;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值