三、删除分区
You can drop partitions from range, list, or composite range-list partitioned tables.
ALTER TABLE ... DROP PARTITION part_name; |
For hash-partitioned tables, or hash subpartitions of range-hash partitioned tables, you must perform. a coalesce operation instead.
-- 减少hash 分区的个数,一次减少一个。不能指定减少partition的名称。 ALTER TABLE hash_example COALESCE PARTITION ; --subpartition 的语法对于如下 ALTER TABLE diving MODIFY PARTITION us_locations COALESCE SUBPARTITION; |
四、 分区合并
1. 合并父分区
ALTER TABLE range_example MERGE PARTITIONS part01_1,part01_2 INTO PARTITION part01 UPDATE INDEXES; |
如果省略update indexes子句的话,必须重建受影响的分区的index 。
ALTER TABLE range_example MODIFY PARTITION part02 REBUILD UNUSABLE LOCAL INDEXES;
2. 合并子分区
ALTER TABLE composite_example MERGE SUBPARTITIONS part_1_sub_2,part_1_sub_3 INTO SUBPARTITION part_1_sub_2 UPDATE INDEXES; |
五、分割分区
hash partitions or subpartitions不能分割。如果指定的分割分区包含任何的数据时,对应的indexes可以被标识为UNUSABLE 。如果是一般的Heap Table,新的分区indexes为UNUSABLE ,所有gloabl indexes被标识为UNUSABLE 。如果是Index-organized table 新分区的indexes 为UNUSABLE,global indexes 仍然为USABLE。
1、range类型分区的分割
ALTER TABLE range_example SPLIT PARTITION part01 AT (TO_DATE('2008-06-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) INTO ( PARTITION part01_1,PARTITION part01_2 ); |
一个分区一次性只能分割成两个分区,at关键字后面指定的值为第一个分区的range范围,默认为less than 。
2、list类型分区的分割
ALTER TABLE list_example SPLIT PARTITION part01 VALUES('ME','PE') INTO ( PARTITION part01_1, PARTITION part01_2 ); |
3、Range_Hash类型分区的分割 新分区会对原有分区的subpartition做rehash的动作。如果在分割是指定subpartition的个数,则按新规则rehash subpartition,如果没有指定则保留原有subpartition的个数不变。
ALTER TABLE range_hash_example SPLIT PARTITION part_1 AT (TO_DATE('2008-07-01 00:00:00','yyyy-mm-dd hh24:mi:ss')) INTO ( PARTITION part_1_1 SUBPARTITIONS 2 STORE IN (tbs01,tbs02), PARTITION part_1_2 ); |
subpartitions 2 -- 指定新分区的subpartition的个数,store in 子句指定subpartition存储的tablespace 。
六、Exchanging Partitions
可以将分区表转换成非分区表,或者几种不同分区表之间的转换。
如下:
CREATE TABLE hash_part02 AS SELECT * FROM hash_example WHERE 1=2; ALTER TABLE hash_example EXCHANGE PARTITION part02 WITH TABLE hash_part02; |
这时,分区表hash_example中的part02分区的资料将被转移到hash_part02这个非分区表中。
七、索引
在分区表上可以建立三种类型的索引:1、和普通表一样的全局索引。2、全局分区索引。3、本地分区索引。
它们之间的区别如下图示。
以表range_example为例。
1.建立普通的索引
create index com_index_range_example_id on range_example(id);
2.建立本地分区索引
create index local_index_range_example_id on range_example(id) local;
3.建立全局分区索引
create index gidx_range_exampel_id on range_example(id)
GLOBAL partition by range(id)
(
part_01 values less than(1000),
part_02 values less than(MAXVALUE)
);
对于分区索引的删除,local index 不能指定分区名称,单独的删除分区索引。local index 对应的分区会伴随着data分区的删除而一起被删除。
global partition index 可以指定分区名称,删除某一分区。但是有一点要注意,如果该分区不为空,则会导致更高一级的索引分区被置为UNUSABLE 。
ALTER INDEX gidx_range_exampel_id drop partition part_01 ; 此句将导致part_02 状态为UNUSABLE 。