千家信息网

Oracle Partition怎么使用

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,本篇内容主要讲解"Oracle Partition怎么使用",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Oracle Partition怎么使用"吧!Or
千家信息网最后更新 2025年01月19日Oracle Partition怎么使用

本篇内容主要讲解"Oracle Partition怎么使用",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Oracle Partition怎么使用"吧!

Oracle分区索引类型
Local Index
A.Local Prefixed Index
可以理解为分区索引的第一个索引字段是分区表的Partition key
B.Local Non-Prefixed Index
可以理解为分区索引的第一个索引字段不是分区表的Partition key
Global Prefixed Index
A.range类型分区
B.hash类型分区
注意:这两种Global索引分区类型与基表的分区类型没有关系。我们可以在非分区表上创建该索引
Global Non-Prefixed Index(目前Oracle还不支持)
创建该索引时会提示ORA-14038: GLOBAL partitioned index must be prefixed

注意:Local Index索引分区和基表分区是一一对应的
Global Index索引分区和基表分区是相互独立,不存在索引分区和表分区之间的一一对应关系
比如基表有5个分区,索引有2个分区

如何确定分区索引是Global/Local,PREFIXED/NON-PREFIXED

SQL> select index_name,table_name,locality,alignment from dba_part_indexes where owner='OHSDBA';INDEX_NAME               TABLE_NAME   LOCALITY   ALIGNMENT------------------------ ------------ ---------- --------------IDX_GLOBAL_PREFIXED      OHS_PART     GLOBAL     PREFIXEDIDX_LOCAL_NON_PREFIXED   OHS_PART     LOCAL      NON_PREFIXED


如何选取分区索引类型

When deciding what kind of partitioned index to use, you should consider the following guidelines in this order:

If the table partitioning column is a subset of the index keys, then use a local index. If this is the case, then you are finished. If this is not the case, then continue to guideline 2.
If the index is unique and does not include the partitioning key columns, then use a global index. If this is the case, then you are finished. Otherwise, continue to guideline 3.
If your priority is manageability, then consider a local index. If this is the case, then you are finished. If this is not the case, continue to guideline 4.
If the application is an OLTP type and users need quick response times, then use a global index. If the application is a DSS type and users are more interested in throughput, then use a local index.

For more information about partitioned indexes and how to decide which type to use, refer to Using Partitioning in a Data Warehouse Environment and Using Partitioning in an Online Transaction Processing Environment.


以下的维护操作,易导致索引分区UNUSABLE
1. IMPORT PARTITION or conventional path SQL*Loader.
2. Direct-path SQL*Loader没有成功完成(local index partitions and global indexes)
3. 维护操作类似ALTER TABLE MOVE PARTITION.
4. 维护操作类似ALTER TABLE TRUNCATE PARTITION.
5. 维护操作类似ALTER TABLE SPLIT PARTITION.
6. 维护操作类似ALTER INDEX SPLIT PARTITION.
7. 对Hash分区类型的表增加分区(分区中数据会变化)

如何避免索引UNUSABLE
为了防止分区维护的操作造成Index不可用,我们可以使用带'update global indexes'的语句,以下的操作支持UPDATE GLOBAL INDEXES:
1. ADD PARTITION|SUBPARTITION (hash only)
2. COALESCE PARTITION|SUBPARTITION
3. DROP PARTITION
4. EXCHANGE PARTITION|SUBPARTITIO
5. MERGE PARTITION
6. MOVE PARTITION|SUBPARTITION
7. SPLIT PARTITION
8. TRUNCATE PARTITION|SUBPARTITION

Update Global Indexes和Update Indexes的区别
Update Global Indexes只维护全局索引,Update Indexes会同时维护全局和本地索引。Update Global Indexes可以理解为是Update Indexes的子集。假定当前有一个表,在其上面创建了local和global partitioned index,我们把其中一个非空的分区做spilt/merge,如果只使用Update Global Indexes,那么Local Index会被标记成UNUSABLE。如果使用Update Indexes,则两者都有效。Oracle 9.2中可以使用'update global indexes',10g之后可以使用'update global indexes'/'update indexes'

测试可用脚本

create table ohs_part(id number, pdate date)partition by range(pdate)(partition ohs_201701 values less than (to_date('2017-02-01','yyyy-mm-dd')), partition ohs_201702 values less than (to_date('2017-03-01','yyyy-mm-dd')), partition ohs_201703 values less than (to_date('2017-04-01','yyyy-mm-dd')), partition ohs_201704 values less than (to_date('2017-05-01','yyyy-mm-dd')), partition ohs_max values less than (maxvalue))/insert into ohs_part select 1, sysdate from dual;insert into ohs_part select 2, sysdate from dual;insert into ohs_part select 3, sysdate - 15 from dual;insert into ohs_part select 4, sysdate - 15 from dual;insert into ohs_part select 5, sysdate + 30 from dual;insert into ohs_part select 6, sysdate + 30 from dual;insert into ohs_part select 7, sysdate + 60 from dual;insert into ohs_part select 8, sysdate + 60 from dual;commit;create index idx_local on ohs_part(pdate) local;create index idx_normal on ohs_part(id);create index idx_global on ohs_part(pdate,id) global;SQL> create index idx_local on ohs_part(pdate) local; Index created.SQL> create index idx_normal on ohs_part(id);Index created.SQL>SQL> create index idx_global on ohs_part(pdate,id) global;Index created.SQL>SQL> col index_name for a30SQL> select index_name,partitioned,status from user_indexes where table_name='OHS_PART';INDEX_NAME                     PARTITION STATUS------------------------------ --------- ------------------------IDX_GLOBAL                     NO        VALIDIDX_NORMAL                     NO        VALIDIDX_LOCAL                      YES       N/ASQL> select index_name,status from user_ind_partitions where index_name='IDX_LOCAL';INDEX_NAME                     STATUS------------------------------ ------------------------IDX_LOCAL                      USABLEIDX_LOCAL                      USABLEIDX_LOCAL                      USABLEIDX_LOCAL                      USABLEIDX_LOCAL                      USABLESQL>SQL> col table_name for a20SQL> select index_name,table_name,locality,alignment from dba_part_indexes where owner='OHSDBA';INDEX_NAME           TABLE_NAME           LOCALITY           ALIGNMENT-------------------- -------------------- ------------------ --------------------IDX_LOCAL            OHS_PART             LOCAL              PREFIXEDSQL>SQL> create index idx_local_non_prefixed on ohs_part(id,pdate) local;Index created.SQL>SQL> select index_name,table_name,locality,alignment from dba_part_indexes where owner='OHSDBA';INDEX_NAME                     TABLE_NAME           LOCALITY           ALIGNMENT------------------------------ -------------------- ------------------ --------------------IDX_LOCAL                      OHS_PART             LOCAL              PREFIXEDIDX_LOCAL_NON_PREFIXED         OHS_PART             LOCAL              NON_PREFIXEDSQL>drop index idx_local;CREATE INDEX idx_global_prefixed ON ohs_part(pdate)GLOBAL PARTITION BY RANGE(pdate)(partition ohs_ind_201701 values less than (to_date('2017-02-01','yyyy-mm-dd')), partition ohs_ind_201702 values less than (to_date('2017-03-01','yyyy-mm-dd')), partition ohs_ind_201703 values less than (to_date('2017-04-01','yyyy-mm-dd')), partition ohs_ind_201704 values less than (to_date('2017-05-01','yyyy-mm-dd')), partition ohs_ind__max values less than (maxvalue))/SQL> drop index idx_local;Index dropped.SQL> col index_name for a30SQL> select index_name,table_name,locality,alignment from dba_part_indexes where owner='OHSDBA';INDEX_NAME                     TABLE_NAME           LOCALITY           ALIGNMENT------------------------------ -------------------- ------------------ --------------------IDX_LOCAL_NON_PREFIXED         OHS_PART             LOCAL              NON_PREFIXEDSQL> CREATE INDEX idx_global_prefixed ON ohs_part(pdate)  2  GLOBAL PARTITION BY RANGE(pdate)  3  (partition ohs_ind_201701 values less than (to_date('2017-02-01','yyyy-mm-dd')),  4   partition ohs_ind_201702 values less than (to_date('2017-03-01','yyyy-mm-dd')),  5   partition ohs_ind_201703 values less than (to_date('2017-04-01','yyyy-mm-dd')),  6   partition ohs_ind_201704 values less than (to_date('2017-05-01','yyyy-mm-dd')),  7   partition ohs_ind__max values less than (maxvalue))  8  /Index created.SQL> select index_name,table_name,locality,alignment from dba_part_indexes where owner='OHSDBA';INDEX_NAME                     TABLE_NAME           LOCALITY           ALIGNMENT------------------------------ -------------------- ------------------ --------------------IDX_GLOBAL_PREFIXED            OHS_PART             GLOBAL             PREFIXEDIDX_LOCAL_NON_PREFIXED         OHS_PART             LOCAL              NON_PREFIXEDSQL>

到此,相信大家对"Oracle Partition怎么使用"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

索引 类型 一一对应 全局 内容 字段 分区表 学习 支持 实用 更深 有效 成功 之间 兴趣 同时 子集 实用性 实际 操作简单 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 网络安全学习几年能学会 jsp连接数据库安全 怎样安全使用数据库 西安西电网络技术有限公司 监控服务器储存空间大小怎样查询 怎样查看数据库密钥 网络安全的重要属性 好友列表 数据库 混合模型怎么录入数据库 北交做嵌入式软件开发的导师 个人云与服务器的区别 明澈网络技术有限公司 数据库数据做错了还能改吗 服务器安装了数据库总是坏 数据库实验报告 华科 怎么查看文档的数据库 预防网络安全的策略和技术 百度网络安全员工资待遇 plsql怎么给数据库配置别名 网络安全事故处理原则 服务器热管理传感器 软件开发的资本结构模板 为配合网络安全审查要多久 影视建模渲染服务器租赁费用 网络安全保护材料 软件开发店群 西北民族大学网络安全专业 数据库技术与应用实训项目 我的世界斗罗大陆服务器开局送百万年 关于网络安全活动举行的意义
0