三通IT学院 门户 技术频道 数据库 查看内容

2014-8-16 09:01
Oracle 分区表的技术与应用总结 三

摘要 : 3.3 合并分区Merge 相邻的分区可以merge为一个分区,新分区的下边界为原来边界值较低的分区,上边界为原来边界值较高的分区,原先的局部索引相应也会合并,全局索引会失效,需要rebuild。 SQL alter table cust ...

时光与梦2014-8-16 09:0171328
原作者: Liuxuebo
3.3 合并分区Merge
相邻的分区可以merge为一个分区,新分区的下边界为原来边界值较低的分区,上边界为原来边界值较高的分区,原先的局部索引相应也会合并,全局索引会失效,需要rebuild。

SQL> alter table custaddr merge partitions t_list552,p_other into partition p_other;
表已更改。
SQL> select index_owner,index_name,partition_name from dba_ind_partitions  where index_name='IX_CUSTADDR_ID';
index_owner       index_name         partition_name
--------------------  ------------------------------ ------------------
icd              ix_custaddr_id          p_other
icd              ix_custaddr_id          t_list551
icd              ix_custaddr_id          t_list556

SQL> select table_name,partition_name from user_tab_partitions where table_name='CUSTADDR';

table_name                     partition_name
------------------------------ ------------------------------
custaddr                       t_list556
custaddr                       t_list551
custaddr                       p_other

3.4 . 移动分区
SQL> alter table custaddr move partition P_OTHER tablespace system;

表已更改。
SQL> alter table custaddr move partition P_OTHER tablespace icd_service;
表已更改。

注意:分区移动会自动维护局部分区索引,oracle不会自动维护全局索引,所以需要我们重新rebuild分区索引,具体需要rebuild哪些索引,可以通过dba_part_indexes,dba_ind_partitions去判断。

SQL> Select index_name,status From user_indexes Where table_name='CUSTADDR';

INDEX_NAME           STATUS
---------------------         --------
IX_CUSTADDR_ID          N/A

      
3.5. Truncate分区
SQL> select * from custaddr partition(T_LIST556);
ID              AREA
---------------               ----
1               556
SQL> alter table custaddr truncate partition(T_LIST556);
表被截断。
SQL> select * from custaddr partition(T_LIST556);
未选定行

说明:
Truncate相对delete操作很快,数据仓库中的大量数据的批量数据加载可能会有用到;截断分区同样会自动维护局部分区索引,同时会使全局索引unusable,需要重建

3.6.  Drop分区
SQL> alter table custaddr drop partition T_LIST551;
表已更改。

SQL> select table_name,partition_name from user_tab_partitions where table_name='CUSTADDR';
TABLE_NAME                     PARTITION_NAME
------------------------------       ------------------------------
CUSTADDR                       T_LIST556
CUSTADDR                       P_OTHER     
同样会自动维护局部分区索引,同时会使全局索引unusable,需要重建


四. 分区表的索引
分区索引分为本地(local index)索引和全局索引(global index)。局部索引比全局索引容易管理, 而全局索引比较快。

与索引有关的表:
dba_part_indexes 分区索引的概要统计信息,可以得知每个表上有哪些分区索引,分区索引的类型(local/global)
dba_ind_partitions  每个分区索引的分区级统计信息dba_indexes/dba_part_indexes 可以得到每个表上有哪些非分区索引

Local索引肯定是分区索引,Global索引可以选择是否分区,如果分区,只能是有前缀的分区索引。

分区索引分2类:有前缀(prefix)的分区索引和无前缀(nonprefix)的分区索引:
(1)有前缀的分区索引指包含了分区键,并且将其作为引导列的索引。
如:
create index i_id_global on PDBA(id) global  --引导列
  partition by range(id)                    --分区键
  (
partition p1 values less than (200),
      partition p2 values less than (maxvalue)
  );
这里的ID 就是分区键,并且分区键id 也是索引的引导列。

(2)无前缀的分区索引的列不是以分区键开头,或者不包含分区键列。
如:
create index ix_custaddr_local_id_p on custaddr(id)
local (
  partition t_list556 tablespace icd_service,
  partition p_other tablespace icd_service
)   

这个分区是按照areacode来的。但是索引的引导列是ID。 所以它就是非前缀分区索引。

全局分区索引不支持非前缀的分区索引,如果创建,报错如下:
SQL> create index i_time_global on PDBA(id) global  --索引引导列
  partition by range(time) --分区建
  (
partition p1 values less than (TO_DATE('2010-12-1', 'YYYY-MM-DD')),
  partition p2 values less than (maxvalue)
  );
partition by range(time)
                       *
第 2 行出现错误:
ORA-14038: GLOBAL 分区索引必须加上前缀


4.1  Local 本地索引
  对于local索引,当表的分区发生变化时,索引的维护由Oracle自动进行。

注意事项:
(1) 局部索引一定是分区索引,分区键等同于表的分区键。
(2) 前缀和非前缀索引都可以支持索引分区消除,前提是查询的条件中包含索引分区键。
(3) 局部索引只支持分区内的唯一性,无法支持表上的唯一性,因此如果要用局部索引去给表做唯一性约束,则约束中必须要包括分区键列。
(4) 局部分区索引是对单个分区的,每个分区索引只指向一个表分区;全局索引则不然,一个分区索引能指向n个表分区,同时,一个表分区,也可能指向n个索引分区,对分区表中的某个分区做truncate或者move,shrink等,可能会影响到n个全局索引分区,正因为这点,局部分区索引具有更高的可用性。
(5) 位图索引必须是局部分区索引。
(6) 局部索引多应用于数据仓库环境中。
(7) B树索引和位图索引都可以分区,但是HASH索引不可以被分区。


示例:
sql> create index ix_custaddr_local_id on custaddr(id) local;
索引已创建。

和下面SQL 效果相同,因为local索引就是分区索引:
create index ix_custaddr_local_id_p on custaddr(id)
local (
  partition t_list556 tablespace icd_service,
  partition p_other tablespace icd_service
)   

SQL> create index ix_custaddr_local_areacode on custaddr(areacode) local;
索引已创建。

验证2个索引的类型:
SQL> select index_name,table_name,partitioning_type,locality,ALIGNMENT from user_part_indexes where table_name='CUSTADDR';

index_name                table_name partition locali alignment
------------------------------ ---------- --------- ------ ------------
ix_custaddr_local_areacode     custaddr   list      local  prefixed
ix_custaddr_local_id           custaddr   list      local  non_prefixed

因为我们的custaddr表是按areacode进行分区的,所以索引ix_custaddr_local_areacode是有前缀的索引(prefixed)。而ix_custaddr_local_id是非前缀索引。

4.2  Global索引
对于global索引,可以选择是否分区,而且索引的分区可以不与表分区相对应。全局分区索引只能是B树索引,到目前为止(10gR2),oracle只支持有前缀的全局索引。
另外oracle不会自动的维护全局分区索引,当我们在对表的分区做修改之后,如果对分区进行维护操作时不加上update global indexes的话,通常会导致全局索引的INVALDED,必须在执行完操作后 REBUILD。      

注意事项:
(1)全局索引可以分区,也可以是不分区索引,全局索引必须是前缀索引,即全局索引的索引列必须是以索引分区键作为其前几列。
(2)全局索引可以依附于分区表;也可以依附于非分区表。
(3)全局分区索引的索引条目可能指向若干个分区,因此,对于全局分区索引,即使只截断一个分区中的数据,都需要rebulid若干个分区甚至是整个索引。
(4)全局索引多应用于oltp系统中。
(5)全局分区索引只按范围或者散列分区,hash分区是10g以后才支持。
(6) oracle9i以后对分区表做move或者truncate的时可以用update global indexes语句来同步更新全局分区索引,用消耗一定资源来换取高度的可用性。
(7) 表用a列作分区,索引用b做局部分区索引,若where条件中用b来查询,那么oracle会扫描所有的表和索引的分区,成本会比分区更高,此时可以考虑用b做全局分区索引(前缀)。


注意:Oracle只支持2中类型的全局分区索引:
range partitioned 和 Hash Partitioned.

官网的说明如下:
Global Partitioned Indexes
Oracle offers two types of global partitioned index: range partitioned and hash partitioned.
(1)Global Range Partitioned Indexes
Global range partitioned indexes are flexible in that the degree of partitioning and the partitioning key are independent from the table's partitioning method. They are commonly used for OLTP environments and offer efficient access to any individual record.
The highest partition of a global index must have a partition bound, all of whose values are MAXVALUE. This ensures that all rows in the underlying table can be represented in the index. Global prefixed indexes can be unique or nonunique.
You cannot add a partition to a global index because the highest partition always has a partition bound of MAXVALUE. If you wish to add a new highest partition, use the ALTER INDEX SPLIT PARTITION statement. If a global index partition is empty, you can explicitly drop it by issuing the ALTER INDEX DROP PARTITION statement. If a global index partition contains data, dropping the partition causes the next highest partition to be marked unusable. You cannot drop the highest partition in a global index.
(2)Global Hash Partitioned Indexes
Global hash partitioned indexes improve performance by spreading out contention when the index is monotonically growing. In other words, most of the index insertions occur only on the right edge of an index.

(3)Maintenance of Global Partitioned Indexes
By default, the following operations on partitions on a heap-organized table mark all global indexes as unusable:
ADD (HASH)
COALESCE (HASH)
DROP
EXCHANGE
MERGE
MOVE
SPLIT
TRUNCATE

示例1 全局索引,全局索引对所有分区类型都支持:
sql> create index ix_custaddr_ global_id on custaddr(id) global;
索引已创建。



示例2:全局分区索引,只支持Range 分区和Hash 分区:
(1)创建2个测试分区表:
sql> create table pdba (id number, time date) partition by range (time)
  (
  partition p1 values less than (to_date('2010-10-1', 'yyyy-mm-dd')),
  partition p2 values less than (to_date('2010-11-1', 'yyyy-mm-dd')),
  partition p3 values less than (to_date('2010-12-1', 'yyyy-mm-dd')),
  partition p4 values less than (maxvalue)
  );
表已创建。

SQL> create table Thash
  (
   id number primary key,
   item_id number(8) not null
  )
  partition by hash(id)
  (
   partition part_01,
   partition part_02,
     partition part_03
);

表已创建。

(2)创建分区索引

示例2:全局分区索引

SQL> create index i_id_global on PDBA(id) global
  partition by range(id)
  (partition p1 values less than (200),
  partition p2 values less than (maxvalue)
  );
索引已创建。
--这个是有前缀的分区索引。

SQL> create index i_time_global on PDBA(id) global
  partition by range(time)
  (partition p1 values less than (TO_DATE('2010-12-1', 'YYYY-MM-DD')),
  partition p2 values less than (maxvalue)
  );
partition by range(time)
                       *
第 2 行出现错误:
ORA-14038: GLOBAL 分区索引必须加上前缀

SQL> create index i_time_global on PDBA(time) global
  partition by range(time)
  (partition p1 values less than (TO_DATE('2010-12-1', 'YYYY-MM-DD')),
  partition p2 values less than (maxvalue)
  );
索引已创建。
--有前缀的分区索引
create index i_Thash_global_index on Thash(item_id) global
  partition by hash(item_id)
  (
   partition p1,
   partition p2
  );
索引已创建。
create index i_range_global_index on Thash(item_id) global
partition by range(item_id)
(
partition p1 values less than (200),
  partition p2 values less than (maxvalue)
)
SQL> select index_name,table_name,partitioning_type,locality,ALIGNMENT from user_part_indexes where table_name='PDBA';
index_name  table_name  partition locali alignment
------------- ---------- --------- ------ ------------
i_id_global    pdba    range   global  prefixed
i_time_global   pdba    range  global  prefixed

SQL> CREATE INDEX ix_hash ON PDBA (id,time) GLOBAL
   PARTITION BY HASH (id)
(PARTITION p1,
  PARTITION p2,
  PARTITION p3,
  PARTITION p4);
索引已创建。

只要索引的引导列包含分区键,就是有前缀的分区索引。



鲜花

握手

雷人

路过

鸡蛋
收藏 分享 邀请
发表评论

最新评论

引用 sunxiaopeng10 2016-8-1 07:55
这个还是不错的,评论一下,看看
引用 kkltkklt 2016-8-3 10:00
要进行数据的迁移,有跨版本的还有表的复制,oracle提供了很多
引用 kkltkklt 2016-8-20 00:28
RE: Oracle 分区表的技术与应用总结
引用 江泽超 2016-8-20 01:10
感谢楼主分享
引用 nick_liu24 2016-9-4 13:35
111111111111111111111111111111
引用 小小学者 2016-9-4 13:37
1111111111111111111
引用 bud407 2016-9-20 21:32
感谢楼主的分享。厉害
引用 yangtuocun 2016-9-22 22:09
好好学习天天向上  
引用 bud407 2016-10-6 22:24
感谢楼主的分享。
引用 bikeman 2016-10-6 22:29
谢谢楼主的分享
引用 caara1019 2016-10-20 10:37
感谢楼主分享
引用 yu_241 2016-10-24 11:24
学习了,谢谢共享
引用 officeboy 2017-11-17 13:20
谢谢分享!
引用 Bryan_zhy 2021-11-2 11:47
谢谢分享,和三通IT一起成长。
引用 stallman 2021-12-28 09:20
好好学习,感谢分享
引用 stallman 2022-1-8 09:12
好好学习,感谢分享
引用 457565758 2022-1-16 11:42
学网络技术上三通论坛!
引用 stallman 2022-3-12 10:02
感谢楼主分享的好课程
引用 457565758 2022-3-29 09:31
学网络技术上三通论坛!

查看全部评论(28)

返回顶部