分享
 
 
 

Oracle数据库表范围分区策略测试过程

王朝oracle·作者佚名  2006-06-30
窄屏简体版  字體: |||超大  

/*该试验针对按照递增列作为分区条件的情况,按照时间作为分区条件的等下次测试*/

create tablespace test01 datafile 'D:\oracle\oradata\myora\test01.dbf'size 50m;

create tablespace test02 datafile 'D:\oracle\oradata\myora\test02.dbf'size 50m;

create tablespace test03 datafile 'D:\oracle\oradata\myora\test03.dbf'size 50m;

create tablespace test_idx01 datafile 'D:\oracle\oradata\myora\test_idx01.dbf'size 20m;

create tablespace test_idx02 datafile 'D:\oracle\oradata\myora\test_idx02.dbf'size 20m;

create tablespace test_idx03 datafile 'D:\oracle\oradata\myora\test_idx03.dbf'size 20m;

Create table test (

aa integer,

bb varchar2(100)

)

partition by rang(aa)(

Partition part_01 values less than(10000) Tablespace test_idx01,

Partition part_02 values less than(30000) Tablespace test_idx02,

Partition part_03 values less than(maxvalue)Tablespace test_idx03

);

Create Index idx_test_aa On test(aa)Local

(

Partition part_01 Tablespace test_idx01,

Partition part_02 Tablespace test_idx02,

Partition part_03 Tablespace test_idx03

);

-- Create sequence

create sequence seq_test_aa

minvalue 1

maxvalue 60000

start with 1

increment by 1

cache 10;

insert into test values(seq_test_aa.nextval,'test');

select Min(callid),Max(callid),Count(*) from test partition(part_01);

select Min(callid),Max(callid),Count(*) from test partition(part_02);

select Min(callid),Max(callid),Count(*) from test partition(part_03);

select Min(callid),Max(callid),Count(*) from test Where callid < 10000;

select Min(callid),Max(callid),Count(*) from test Where callid > 10000 And callid < 30000;

select Min(callid),Max(callid),Count(*) from test Where callid >= 30000;

exp test/test@myora file=e:\test01.dmp buffer=8192000 tables=test:part_01 rows=Y

exp test/test@myora file=e:\test02.dmp buffer=8192000 tables=test:part_02 rows=Y

exp test/test@myora file=e:\test03.dmp buffer=8192000 tables=test:part_03 rows=Y

/*注意:这里删除的分区要从后面删,因为oracle不允许向前添加分区,只能向后添加分区*/

alter table cdr drop partition part03 ;

select Min(aa),Max(aa),Count(*) from test partition(part_01);

select Min(aa),Max(aa),Count(*) from test partition(part_02);

select Min(aa),Max(aa),Count(*) from test partition(part_03); --本条将报错,提示无此分区

select Min(aa),Max(aa),Count(*) from test Where aa < 3000000;

select Min(aa),Max(aa),Count(*) from test Where aa > 3000000 And aa < 6000000;

select Min(aa),Max(aa),Count(*) from test Where aa >= 6000000; --将无数据显示

alter table test add partition part03 values less than(maxvalue) tablespace test03;

select Min(aa),Max(aa),Count(*) from test partition(part_01);

select Min(aa),Max(aa),Count(*) from test partition(part_02);

select Min(aa),Max(aa),Count(*) from test partition(part_03); --将无数据

select Min(aa),Max(aa),Count(*) from test Where aa < 3000000;

select Min(aa),Max(aa),Count(*) from test Where aa > 3000000 And aa < 6000000;

select Min(aa),Max(aa),Count(*) from test Where aa >= 6000000; --将无数据显示

imp test/test@myora FILE=e:\test03.dmp TABLES = (cdr:part_03) IGNORE=y

select Min(aa),Max(aa),Count(*) from test partition(part_01);

select Min(aa),Max(aa),Count(*) from test partition(part_02);

select Min(aa),Max(aa),Count(*) from test partition(part_03);

select Min(aa),Max(aa),Count(*) from test Where aa < 3000000;

select Min(aa),Max(aa),Count(*) from test Where aa > 3000000 And aa < 6000000;

select Min(aa),Max(aa),Count(*) from test Where aa >= 6000000;

delete from test partition(part_02);

commit;

select Min(aa),Max(aa),Count(*) from test partition(part_01);

select Min(aa),Max(aa),Count(*) from test partition(part_02); --将无数据显示

select Min(aa),Max(aa),Count(*) from test partition(part_03);

select Min(aa),Max(aa),Count(*) from test Where aa < 3000000;

select Min(aa),Max(aa),Count(*) from test Where aa > 3000000 And aa < 6000000; --将无数据显示

select Min(aa),Max(aa),Count(*) from test Where aa >= 6000000;

insert into test values(40000,'test');

commit;

select Min(aa),Max(aa),Count(*) from test partition(part_01);

select Min(aa),Max(aa),Count(*) from test partition(part_02); --将显示1条数据

select Min(aa),Max(aa),Count(*) from test partition(part_03);

select Min(aa),Max(aa),Count(*) from test Where aa < 3000000;

select Min(aa),Max(aa),Count(*) from test Where aa > 3000000 And aa < 6000000; --将显示1条数据

select Min(aa),Max(aa),Count(*) from test Where aa >= 6000000;

select count(*) from test where aa > 1000001; --将有大量数据统计出

select count(*) from test partition(part_02) where aa > 1000001; --结果为0条

alter table cdr split partition part_02 at (50000) into(partition part_02,partition part_06 tablespace test01p2);

通过这个测试,创建好的分区可以直接使用分区拆分功能对现有的分区进行分割,分割时可以指定表空间。因此,在这里建议以后创建分区的命名和表空间的命名时可以从第二位或者第三位开始命名:如part_01,part_02,part_03.....,这样可以为以后的分区拆分留下扩展空间(可以按照PB中的DataWindow的思想做)。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有