码迷,mamicode.com
首页 > 数据库 > 详细

oracle 表分区例子

时间:2017-07-09 23:14:09      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:varchar2   file   查询   trunc   record   rac   style   创建   name   

oracle表分区详解-一步一步教你oracle分区表详解 
  
1、创建三个不同的表空间,模拟在不同磁盘上的保存不同范围的数据  
  
create tablespace test01 datafile /u01/app/oracle/oradata/orcl02/test01.dbf size 500m; ---数据文件可以不再同一存储上  
create tablespace test02 datafile /u01/app/oracle/oradata/orcl02/test02.dbf size 500m;  
create tablespace test03 datafile /u01/app/oracle/oradata/orcl02/test03.dbf size 500m;  
2、在把表建在不同的表空间上(分块存储数据文件)  
create table graderecord  
(  
sno varchar2(10),  
sname varchar2(20),  
dormitory varchar2(3),  
grade int  
)  
partition by range(grade)  
(  
partition bujige values less than(60) tablespace test01, --不及格,范围分区  
partition jige values less than(85) tablespace test02, --及格  
partition youxiu values less than(maxvalue) tablespace test03--优秀  
  
)  
  
3、在表里插入数据  
  
Insert into graderecord values(511601,,229,92);  
insert into graderecord values(511602,,229,62);  
insert into graderecord values(511603,,229,26);  
insert into graderecord values(511604,,228,77);  
insert into graderecord values(511605,,228,47);  
insert into graderecord(sno,sname,dormitory) values(511606,,228);  
insert into graderecord values(511607,,240,90);  
insert into graderecord values(511608,,240,100);  
insert into graderecord values(511609,,240,67);  
insert into graderecord values(511610,,240,75);  
insert into graderecord values(511611,,240,60);  
  
4、分别查询结果  
  
SQL> select * from graderecord;  
select * from graderecord partition(bujige);  
  
SNO SNAME DOR GRADE  
---------- -------------------- --- ----------  
511603 ?? 229 26  
511605 ?? 228 47  
511602 ?? 229 62  
511604 ?? 228 77  
511609 ?? 240 67  
511610 ?? 240 75  
511611 ?? 240 60  
511601 ?? 229 92  
511606 ?? 228  
511607 ?? 240 90  
511608 ?? 240 100  
  
11 rows selected.  
  
SQL>  
SNO SNAME DOR GRADE  
---------- -------------------- --- ----------  
511603 ?? 229 26  
511605 ?? 228 47  
  
SQL> select * from graderecord partition(jige);  
  
SNO SNAME DOR GRADE  
---------- -------------------- --- ----------  
511602 ?? 229 62  
511604 ?? 228 77  
511609 ?? 240 67  
511610 ?? 240 75  
511611 ?? 240 60  
  
SQL> select * from graderecord partition(youxiu);  
  
SNO SNAME DOR GRADE  
---------- -------------------- --- ----------  
511601 ?? 229 92  
511606 ?? 228  
511607 ?? 240 90  
511608 ?? 240 100  
  
SQL>  
5.删除分区trancate partition 
alter table graderecord truncate partition bujige update indexes;

看到了吧。这就是范围分区的简单例子。 

 

oracle 表分区例子

标签:varchar2   file   查询   trunc   record   rac   style   创建   name   

原文地址:http://www.cnblogs.com/kexb/p/7143261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!