對oracle分割槽表的理解整理

達芬奇的夢發表於2018-05-07

1.表空間及分割槽表的概念

 

    表空間:是一個或多個資料檔案的集合,所有的資料物件都存放在指定的表空間中,但主要存放的是表,所以稱作表空間。

    分割槽表:當表中的資料量不斷增大,查詢資料的速度就會變慢,應用程式的效能就會下降,這時就應該考慮對錶進行分割槽。表進行分割槽後,邏輯上表仍然是一張完整的表,只是將表中的資料在物理上存放到多個表空間(物理檔案上),這樣查詢資料時,不至於每次都掃描整張表。

 

2.表分割槽的具體作用

    oracle的表分割槽功能透過改善可管理性、效能和可用性,從而為各式應用程式帶來了極大的好處。通常,分割槽可以使某些查詢以及維護操作的效能大大提高。此外,分割槽還可以極大簡化常見的管理任務,分割槽是構建千兆位元組資料系統或超高可用性系統的關鍵工具。

    分割槽功能能夠將表、索引或索引組織表進一步細分為段,這些資料庫物件的段叫做分割槽。每個分割槽有自己的名稱,還可以選擇自己的儲存特性。從資料庫 管理員的角度來看,一個分割槽後的物件具有多個段,這些段既可進行集體管理,也可單獨管理,這就使資料庫管理員在管理分割槽後的物件時有相當大的靈活性。但 是,從應用程式的角度來看,分割槽後的表與非分割槽表完全相同,使用 SQL DML 命令訪問分割槽後的表時,無需任何修改。

 

什麼時候使用分割槽表,官方給的建議是:

a. 表的大小超過2GB

b. 表中包含歷史資料,新的資料被增加到新的分割槽中。

 

3.表分割槽的優缺點

優點:

a.改善查詢效能:對分割槽物件的查詢可以僅搜尋自己關心的分割槽,提高檢索速度。

b.增強可用性:如果表的某個分割槽出現故障,表在其他分割槽的資料仍然可用。

c.維護方便:如果表的某個分割槽出現故障,需要修復資料,只修復該分割槽即可。

d.均衡I/O:可以把不同的分割槽對映到磁碟以平衡I/O,改善整個系統效能。

 

缺點:

分割槽表相關,已經存在的表沒有方法可以直接轉化為分割槽表。不過oracle提供了線上重定義表的功能。

 

4.表分割槽的幾種型別及操作方法

4.1 範圍分割槽(range)  maxvalue

    範圍分割槽將資料基於範圍對映到每一個分割槽,這個範圍是你在建立分割槽時指定的分割槽鍵決定的。這種分割槽方式是最為常用的,並且分割槽鍵經常採用日期。舉個例子:你可能會將銷售資料按照月份進行分割槽。

    當使用範圍分割槽時,請考慮以下幾個規則:

a.每一個分割槽都必須有一個VALUES LESS THEN子句,它指定了一個不包括在該分割槽中的上限值。分割槽鍵的任何值等於或者大於這個上限值的記錄都會被加入到下一個高一些的分割槽中。

b.所有分割槽,除了第一個,都會有一個隱式的下限值,這個值就是此分割槽的前一個分割槽的上限值。

c.如果某些記錄暫無法預測範圍,可以建立maxvalue分割槽,所有不在指定範圍內的記錄都會被儲存到maxvalue所在分割槽中。

 

1假設有一個test表,表中有資料200000行,我們將此表透過id進行分割槽,每個分割槽儲存100000行,我們將每個分割槽儲存到單獨的表空間中,這樣資料檔案就可以跨越多個物理磁碟。下面是建立表和分割槽的程式碼,如下:

----先建立多個測試表空間

sys@ORCL>create tablespace test_ts01 datafile '/home/oracle/test_01.dbf' size 32m extent management local autoallocate;

Tablespace created.

sys@ORCL>create tablespace test_ts02 datafile '/home/oracle/test_02.dbf' size 32m extent management local autoallocate;

Tablespace created.

sys@ORCL>create tablespace test_ts03 datafile '/home/oracle/test_03.dbf' size 32m extent management local autoallocate;

Tablespace created.

 

----建立test分割槽表

create table test

(        id number not null,

         first_name varchar2(30) not null,

         last_name varchar2(30) not null,

         phone varchar2(30) not null,

         email varchar2(80),

         status char(1),

         constraint test_id primary key (id)

)

partition by range (id)

(        partition test_part1 values less than (100000) tablespace test_ts01,

         partition test_part2 values less than (200000) tablespace test_ts02,

         partition test_part3 values less than (maxvalue) tablespace test_ts03

);

        

 

 

2:按時間劃分

create table order_time

(        order_id number(7) not null,

         order_date date,

         total_amount number,

         custotmer_id number(7),

         paid char(1)

)

partition by range(order_date)

(        partition ora_time_part01 values less than (to_date('2016-06-01','yyyy-mm-dd')) tablespace test_ts01,

         partition ora_time_part02 values less than (to_date('2016-07-01','yyyy-mm-dd')) tablespace test_ts02,

         partition ora_time_part03 values less than (to_date('2016-08-01','yyyy-mm-dd')) tablespace test_ts03

);

 

 

3maxvalue

create table rangetable

(        rt_id number(8) not null,

         name varchar(10),

         grade int,

         constraint ranget_id primary key (rt_id)

)

partition by range (grade)

(        partition part1 values less than (1000) tablespace test_ts01,

         partition part2 values less than (2000) tablespace test_ts02,

         partition part3 values less than (maxvalue) tablespace test_ts03

);

 

 

4.2 列表分割槽(list)  default

    List分割槽也需要指定列的值,其分割槽值必須明確指定,該分割槽列只能有一個,不能像range或者hash分割槽那樣同時指定多個列做為分割槽依賴列,但它的單個分割槽對應值可以是多個。

    在分割槽時必須確定分割槽列可能存在的值,一旦插入的列值不在分割槽範圍內,則插入/更新就會失敗,因此通常建議使用list分割槽時,要建立一個default分割槽儲存那些不在指定範圍內的記錄,類似range分割槽中的maxvalue分割槽。

    在根據某欄位,如城市程式碼分割槽時,可以指定default,把非分割槽規則的資料,全部放到這個default分割槽。該分割槽的特點是某列的值只有幾個,基於這樣的特點我們可以採用列表分割槽。

 

create tablespace test_ts04 datafile '/home/oracle/test_04.dbf' size 32m extent management local autoallocate;

create tablespace test_ts05 datafile '/home/oracle/test_05.dbf' size 32m extent management local autoallocate;

create tablespace test_ts06 datafile '/home/oracle/test_06.dbf' size 32m extent management local autoallocate;

alter database datafile '/home/oracle/test_06.dbf' resize 100m;

 

1

create table problem_tickets

(        problem_id number(7) not null,

         description varchar2(2000),

         customer_id number(7) not null,

         date_entered date not null,

         status varchar2(20),

         constraint problem_tic_id primary key (problem_id)

)

partition by list (status)

(        partition prob_active values ('active') tablespace test_ts04,

         partition prob_inactive values ('inactive') tablespace test_ts05,

         partition prob_other values(default) tablespace test_ts06

);

 

2

create table ListTable

(        id int,

         name varchar2(20),

         area varchar2(10),

         constraint ListTable_id primary key (id)

)

partition by list (area)

(        partition part1 values ('SH','BJ') tablespace test_ts04,

         partition part2 values ('SC','CQ') tablespace test_ts05,

         partition part3 values ('SD') tablespace test_ts06

);

 

4.3 雜湊分割槽(hash)

    對於那些無法有效劃分範圍的表,可以使用hash分割槽,這樣對於提高效能還是會有一定的幫助。hash分割槽會將表中的資料平均分配到你指定的幾個分割槽中,列所在分割槽是依據分割槽列的hash值自動分配,因此你並不能控制也不知道哪條記錄會被放到哪個分割槽中,hash分割槽也可以支援多個依賴列。

 

1

create table hash_table

(        col number(8),

         inf varchar2(100)

)

partition by hash(col)

(        partition part01 tablespace test_ts04,

         partition part02 tablespace test_ts05,

         partition part03 tablespace test_ts06

);

 

簡寫:

create tablespace test_ts07 datafile '/home/oracle/test_07.dbf' size 32m extent management local autoallocate;

create tablespace test_ts08 datafile '/home/oracle/test_08.dbf' size 32m extent management local autoallocate;

create tablespace test_ts09 datafile '/home/oracle/test_09.dbf' size 32m extent management local autoallocate;

 

create table emp

(        empno number(4),

         ename varchar2(30),

         sal number

)

partition by hash (empno) partitions 4

store in (test_ts06,test_ts07,test_ts08,test_ts09);

 

 

4.4 組合分割槽

    如果某表按照某列分割槽之後,仍然較大,或者是一些其它的需求,還可以透過分割槽內再建子分割槽的方式將分割槽再分割槽,即組合分割槽的方式。

    10g中組合分割槽主要有兩種:range-hashrange-list11g中又增加了range-rangelist-rangelist-listlist-hash,並且 11g裡面還支援Interval分割槽和虛擬列分割槽。 注意順序,根分割槽只能是range分割槽,子分割槽可以是hash分割槽或list分割槽。

 

----oracle 11g 新特性簡介:

http://blog.csdn.net/tianlesoftware/article/details/5134819

----分割槽表  Interval分割槽  虛擬列 按星期分割槽表

http://blog.csdn.net/tianlesoftware/article/details/5662337

 

 

4.4.1 範圍-列表複合分割槽(range-list)

    這種分割槽是基於範圍分割槽和列表分割槽,表首先按某列進行範圍分割槽,然後再按某列進行列表分割槽,分割槽之中的分割槽被稱為子分割槽。

 

create table sales

(        product_id varchar2(5),

         sales_date date,

         sales_cost number(10),

         status varchar2(30)

)

partition by range (sales_date) subpartition by list (status)

(        partition p1 values less than(to_date('2016-06-01','yyyy-mm-dd')) tablespace test_ts07

             (        subpartition p1sub1 values ('active') tablespace test_ts07,

                            subpartition p1sub2 values ('inactive') tablespace test_ts07

         ),

         partition p2 values less than(to_date('2016-07-01','yyyy-mm-dd')) tablespace test_ts08

                   (        subpartition p2sub1 values('active') tablespace test_ts08,

                            subpartition p2sub2 values ('inactive') tablespace test_ts08

                    )

);

 

 

4.4.2 範圍-雜湊複合分割槽(range-hash)

    這種分割槽是基於範圍分割槽和雜湊分割槽,表首先按某列進行範圍分割槽,然後再按某列進行雜湊分割槽。

create tablespace test_ts11 datafile '/home/oracle/test_11.dbf' size 32m extent management local autoallocate;

create tablespace test_ts12 datafile '/home/oracle/test_12.dbf' size 32m extent management local autoallocate;

create tablespace test_ts13 datafile '/home/oracle/test_13.dbf' size 32m extent management local autoallocate;

 

create table dinya_test

 (      transaction_id number,

         item_id number(8) not null,

         item_description varchar2(300),

         transaction_date date,

         constraint dinya_test_id primary key (transaction_id)

 )

partition by range(transaction_date) subpartition by hash(transaction_id)  subpartitions 3

store in (test_ts11,test_ts12,test_ts13)

          (    partition part_01 values less than(to_date('2016-06-01','yyyy-mm-dd')),

              partition part_02 values less than(to_date('2016-12-01','yyyy-mm-dd')),

              partition part_03 values less than(maxvalue)

 );

 

 

5.分割槽表的維護操作

5.1 新增分割槽(add)

----新增新的分割槽有2中情況:

1)原分割槽裡邊界是maxvalue或者default 這種情況下,我們需要把邊界分割槽drop掉,加上新分割槽後,在新增上新的分割槽。 或者採用splitrange型別使用atlist使用values)對邊界分割槽進行拆分。

2)沒有邊界分割槽的。 這種情況下,直接新增分割槽就可以了。

 

----以下程式碼給test表新增一個分割槽

alter table test add partition test_part4 values less than (400000);

create tablespace test_ts14 datafile '/home/oracle/test_14.dbf' size 32m;

alter table test add partition test_part5 values less than (500000) tablespace test_ts14;

----注意:以上新增的分割槽界限應該高於最後一個分割槽界限。

 

----以下程式碼給sales表的p2分割槽新增一個p2sub3子分割槽

create tablespace test_ts15 datafile '/home/oracle/test_15.dbf' size 3g;

alter table sales modify partition p2 add subpartition p2sub3 values('complete') tablespace test_ts15;

 

--------------有邊界分割槽新增新分割槽:

-----1> 建立分割槽表及建立索引

create table custaddr

(        id varchar2 (15 byte) not null,

         areacode varchar2(4 byte)

)

partition by list (areacode)

(        partition t_list555 values ('555') tablespace test_ts15,

         partition p_other values (default) tablespace test_ts15);

 

create index ix_custaddr_id on custaddr(id)

local (  partition t_list555 tablespace test_ts15,

            partition p_other tablespace test_ts15);

 

----2> 插入測試資料

insert into custaddr values ('1','555');

insert into custaddr values ('2','552');

insert into custaddr values ('3','554');

commit;

select * from custaddr;

ID                             AREACODE

------------------------------ --------

1                              555

2                              552

3                              554

select * from custaddr partition(t_list555);

ID                             AREACODE

------------------------------ --------

1                              555

 

----3> 刪除default分割槽

shall@ORCL>alter table custaddr drop partition p_other;

Table altered.

shall@ORCL>select * from custaddr;

ID                             AREACODE

------------------------------ --------

1                              555

shall@ORCL>select table_name,partition_name from user_tab_partitions where table_name='CUSTADDR';

TABLE_NAME           PARTITION_NAME

-------------------- ------------------------------

CUSTADDR             T_LIST555

 

----4> 新增新分割槽,default分割槽

shall@ORCL> alter table custaddr add partition t_list551 values('551') tablespace test_ts15;

shall@ORCL>alter table custaddr add partition p_other values (default) tablespace test_ts15;

 

shall@ORCL> select table_name,partition_name from user_tab_partitions where table_name='CUSTADDR';

TABLE_NAME           PARTITION_NAME

-------------------- ------------------------------

CUSTADDR             P_OTHER

CUSTADDR             T_LIST551

CUSTADDR             T_LIST555

 

----5> 對於區域性索引,oracle會自動增加一個區域性分割槽索引

shall@ORCL> select index_name,table_name,partitioning_type from user_part_indexes where index_name='IX_CUSTADDR_ID';

INDEX_NAME                             TABLE_NAME           PARTITIONING_TYPE

------------------------------------------------------------ -------------------- ------------------

IX_CUSTADDR_ID                            CUSTADDR             LIST

 

shall@ORCL>select index_name,partition_name from user_ind_partitions where index_name='IX_CUSTADDR_ID';

INDEX_NAME                                         PARTITION_NAME

------------------------------------------------------------ ------------------------------

IX_CUSTADDR_ID                                               P_OTHER

IX_CUSTADDR_ID                                               T_LIST551

IX_CUSTADDR_ID                                               T_LIST555

 

----使用split分割槽拆分方式,接上面--2>進行下面測試

----3> 使用split方式新增分割槽

alter table custaddr split partition p_other values('552') into (partition t_list552 tablespace test_ts15, partition p_other tablespace test_ts15);

------注意,這裡如果是range型別,使用atlist使用values

 

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

TABLE_NAME           PARTITION_NAME

-------------------- ------------------------------

CUSTADDR             P_OTHER

CUSTADDR             T_LIST552

CUSTADDR             T_LIST555

 

select index_name,partition_name from user_ind_partitions where index_name='IX_CUSTADDR_ID';

INDEX_NAME                                                   PARTITION_NAME

------------------------------------------------------------ ------------------------------

IX_CUSTADDR_ID                                               P_OTHER

IX_CUSTADDR_ID                                               T_LIST552

IX_CUSTADDR_ID                                               T_LIST555

------注意:分割槽表會自動維護區域性分割槽索引。全域性索引會失效,需要rebuild

shall@ORCL>Select index_name,status From user_indexes Where table_name='CUSTADDR';

INDEX_NAME                                                   STATUS

------------------------------------------------------------ ----------------

IX_CUSTADDR_ID                                               N/A

 

 

------檢視資料

shall@ORCL>select * from custaddr;

ID                             AREACODE

------------------------------ --------

1                              555

2                              552

3                              554

shall@ORCL>select * from custaddr partition(t_list552);

ID                             AREACODE

------------------------------ --------

2                              552

shall@ORCL>select * from custaddr partition(t_list555);

ID                             AREACODE

------------------------------ --------

1                              555

shall@ORCL>select * from custaddr partition(p_other);

ID                             AREACODE

------------------------------ --------

3                              554

 

 

5.2 刪除分割槽(drop)

----以下程式碼刪除了salesp2分割槽

alter table sales drop partition p2;

 

------alter table sales add partition p2 values less than(to_date('2016-07-01','yyyy-mm-dd')) tablespace test_ts08

                   (        subpartition p2sub1 values('active') tablespace test_ts08,

                            subpartition p2sub2 values ('inactive') tablespace test_ts08,

                            subpartition p2sub3 values('complete') tablespace test_ts15

                    );

----刪除salesp2sub3子分割槽

alter table sales drop subpartition p2sub3;

----注意:如果刪除的分割槽是表中唯一的分割槽,那麼此分割槽將不能被刪除,要想刪除此分割槽,必須刪除表。

----同樣會自動維護區域性分割槽索引,同時會使全域性索引unusable,需要重建

 

5.3 截斷分割槽(truncate)

    截斷某個分割槽是指刪除某個分割槽中的資料,並不會刪除分割槽,也不會刪除其它分割槽中的資料。當表中即使只有一個分割槽時,也可以截斷該分割槽。透過以下程式碼截斷分割槽:

alter table sales truncate partition p2;

 

----當然也可以截斷子分割槽

alter table sales truncate subpartition p2sub2;

 

    Truncate相對delete操作很快,資料倉儲中的大量資料的批次資料載入可能會有用到;截斷分割槽同樣會自動維護區域性分割槽索引,同時會使全域性索引unusable,需要重建

 

5.4 合併分割槽(merge)

    相鄰的分割槽可以merge為一個分割槽,新分割槽的下邊界為原來邊界值較低的分割槽,上邊界為原來邊界值較高的分割槽,原先的區域性索引相應也會合並,全域性索引會失效,需要rebuild

 

alter database datafile '/home/oracle/test_08.dbf' resize 500m;

alter table sales merge partitions p1,p2 into partition p2;

 

5.5 拆分分割槽(split)

    拆分分割槽將一個分割槽拆分兩個新分割槽,拆分後原來分割槽不再存在。注意不能對HASH型別的分割槽進行拆分。

alter table sales split partition p2 at (to_date('2016-06-01','yyyy-mm-dd')) into (partition p3,partition p4);

 

5.6 重新命名分割槽(rename)

alter table sales rename partition p3 to p13;

 

5.7 移動分割槽(move)

alter table test move partition test_part1 tablespace test_ts15;

alter table test move partition test_part1 tablespace test_ts01;

    注意:分割槽移動會自動維護區域性分割槽索引,不會自動維護全域性索引,所以需要我們重新rebuild分割槽索引,具體需要rebuild哪些索引,可以透過dba_part_indexes,dba_ind_partitions去判斷。

shall@ORCL>Select index_name,status From user_indexes Where table_name='CUSTADDR';

INDEX_NAME                                                   STATUS

------------------------------------------------------------ ----------------

IX_CUSTADDR_ID                                               N/A

 

 

 

6.相關查詢

6.1 查詢表上有多少個分割槽

select * from user_tab_partitions where table_name='SALES';

select * from dba_tab_partitions where table_name='SALES';

 

 

6.2 查詢索引資訊

select object_name,object_type,tablespace_name,sum(value)    from v$segment_statistics

 where statistic_name IN ('physical reads','physical write','logical reads')and object_type='INDEX'

 group by object_name,object_type,tablespace_name

 order by 4 desc;

 

6.3 查詢所有分割槽表資訊

select * from dba_part_tables;

select * from all_part_tables;                   ---當前使用者可訪問的所有分割槽表資訊

select * from user_part_tables;               ---當前使用者的所有分割槽表資訊

 

6.4 查詢子分割槽資訊

select * from dba_tab_subpartitions;

select * from all_tab_subpartitions;

select * from user_tab_subpartitions;

 

6.5 查詢分割槽列資訊

select * from dba_part_key_columns;

select * from all_part_key_columns;

select * from user_part_key_columns;

 

6.6 查詢子分割槽列資訊

select * from dba_subpart_key_columns;

select * from all_subpart_key_columns;

select * from user_subpart_key_columns;

 

6.7 查詢所有的分割槽表

select * from dba_tables where partitioned='YES';

select * from all_tables where partitioned='YES';

select * from user_tables where partitioned='YES';

 

 

7.普通錶轉分割槽表方法

reference                   http://blog.csdn.net/tianlesoftware/article/details/6218704

 

將普通錶轉換成分割槽表有4種方法:

1. Export/import method

2. Insert with a subquery method

3. Partition exchange method

4. DBMS_REDEFINITION

 

7.1 Export/import method(匯入匯出)

 

----建立普通表:

sys@ORCL>create table shall(id int,name varchar2(20));

sys@ORCL>insert into shall values(100,'zhong');

sys@ORCL>insert into shall values(101,'Jack');

sys@ORCL>insert into shall values(204,'shell');

sys@ORCL>commit;

 

----匯出表

[oracle@zyx ~]$ exp \'/ as sysdba\' tables=shall file=shall.dmp

Export: Release 11.2.0.4.0 - Production on Tue Jun 28 12:32:03 2016

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

About to export specified tables via Conventional Path ...

. . exporting table                          SHALL          3 rows exported

Export terminated successfully without warnings.

[oracle@zyx ~]$

 

----刪除原普通表

sys@ORCL>drop table shall;

 

----重新建立為分割槽表

create table shall(id int,name varchar2(20))

partition by range(id)

(        partition shall_part1 values less than (100),

         partition shall_part2 values less than (200),

         partition shall_part3 values less than (maxvalue)

);

 

----匯入資料

[oracle@zyx ~]$ imp \'/ as sysdba\' file=shall.dmp tables=shall fromuser=sys touser=sys ignore=y;

Import: Release 11.2.0.4.0 - Production on Tue Jun 28 12:38:02 2016

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export file created by EXPORT:V11.02.00 via conventional path

. importing SYS's objects into SYS

. . importing table                        "SHALL"          3 rows imported

Import terminated successfully without warnings.

 

----測試

sys@ORCL>select * from shall;

        ID NAME

---------- ----------------------------------------

       100 zhong

       101 Jack

       204 shell

sys@ORCL>select * from shall partition(shall_part1);

no rows selected

sys@ORCL>select * from shall partition(shall_part2);

        ID NAME

---------- ----------------------------------------

       100 zhong

       101 Jack

sys@ORCL>select * from shall partition(shall_part3);

        ID NAME

---------- ----------------------------------------

       204 shell

sys@ORCL>select * from shall partition(shall_part3) union all select * from shall partition(shall_part2);

        ID NAME

---------- ----------------------------------------

       204 shell

       100 zhong

       101 Jack

sys@ORCL>select table_name,partition_name from user_tab_partitions where table_name='SHALL';

TABLE_NAME PARTITION_NAME

---------- --------------------

SHALL      SHALL_PART1

SHALL      SHALL_PART2

SHALL      SHALL_PART3

 

7.2 Insert with a subquery method(插入查詢)

    這種方法就是使用insert 來實現。 當然在建立分割槽表的時候可以一起插入資料,也可以建立好後在insert 進去。這種方法採用DDL語句,不產生UNDO,只產生少量REDO,建表完成後資料已經在分佈到各個分割槽中。

 

----建立普通表:

sys@ORCL>create table test2(id int,name varchar2(20));

sys@ORCL>insert into test2 values(100,'zhong');

sys@ORCL>insert into test2 values(140,'Jack');

sys@ORCL>insert into test2 values(240,'shell');

sys@ORCL>commit;

 

----建立分割槽表

create table part(id int,name varchar2(20))

partition by range(id)

(        partition part1 values less than (100),

         partition part2 values less than (200),

         partition part3 values less than (maxvalue)

);

 

----插入資料

sys@ORCL>insert into part  select * from test2;

sys@ORCL>commit;

sys@ORCL>select * from part;

 

----刪除原普通表,並將分割槽表更名為原普通表

sys@ORCL>drop table test2;           ----確定不需要就刪除,不確定就rename to old

sys@ORCL>alter table part rename to test2;

 

----檢查測試

sys@ORCL>select * from test2;

sys@ORCL>select * from test2 partition (part1);

no rows selected

sys@ORCL>select * from test2 partition (part2);

        ID NAME

---------- ----------------------------------------

       100 zhong

       140 Jack

sys@ORCL>select * from test2 partition (part3);

        ID NAME

---------- ----------------------------------------

       240 shell

 

sys@ORCL>select table_name,partition_name from user_tab_partitions where table_name='TEST2';

TABLE_NAME PARTITION_

---------- ----------

TEST2      PART1

TEST2      PART2

TEST2      PART3

 

7.3 Partition exchange method(交換分割槽)

    這種方法只是對資料字典中分割槽和表的定義進行了修改,沒有資料的修改或複製,效率最高。適用於包含大資料量的錶轉到分割槽表中的一個分割槽的操作。儘量在閒時進行操作。

交換分割槽的操作步驟如下:

1. 建立分割槽表,假設有2個分割槽,P1P2.

2. 建立表A存放P1規則的資料。

3. 建立表存放P2規則的資料。

4. 用表P1 分割槽交換。 把表A的資料放到到P1分割槽

5. 用表p2 分割槽交換。 把表B的資料存放到P2分割槽。

 

----建立分割槽表

create table p_emp (sal number(7,2))

partition by range(sal)

(        partition emp_p1 values less than (2000),

         partition emp_p2 values less than (4000)

);

 

----建立測試表

sys@ORCL>create table emp1 as select sal from scott.emp where sal<2000;

sys@ORCL>select count(*) from emp1;

  COUNT(*)

----------

         8

sys@ORCL>create table emp2 as select sal from scott.emp where sal between 2000 and 3999;

sys@ORCL>select count(*) from emp2;

  COUNT(*)

----------

         5

 

----將兩個基本表與兩個分割槽進行交換

----如果插入的資料不滿足分割槽規則,會報ORA-14400錯誤

sys@ORCL>alter table p_emp exchange partition emp_p1 with table emp1;

sys@ORCL>select count(*) from emp1;

  COUNT(*)

----------

         0

sys@ORCL>select count(*) from p_emp;

  COUNT(*)

----------

         8

sys@ORCL>alter table p_emp exchange partition emp_p2 with table emp2;

sys@ORCL>select count(*) from p_emp;

  COUNT(*)

----------

        13

sys@ORCL>select count(*) from emp2;

  COUNT(*)

----------

         0

 

----檢查測試

sys@ORCL>select count(*) from p_emp partition (emp_p1);

  COUNT(*)

----------

         8

sys@ORCL>select table_name,partition_name from user_tab_partitions where table_name='P_EMP';

TABLE_NAME PARTITION_NAME

---------- --------------------

P_EMP      EMP_P1

P_EMP      EMP_P2

 

7.4 DBMS_REDEFINITION(線上重定義)

    線上重定義能保證資料的一致性,在大部分時間內,表都可以正常進行DML操作。只在切換的瞬間鎖表,具有很高的可用性。這種方法具有很強的靈活性,對各種不同的需要都能滿足。而且,可以在切換前進行相應的授權並建立各種約束,可以做到切換完成後不再需要任何額外的管理操作。

 

reference                   http://blog.csdn.net/tianlesoftware/article/details/6218693

這個功能只在9.2.0.4以後的版本才有,線上重定義表具有以下功能:

1)修改表的儲存引數;

2)將錶轉移到其他表空間;

3)增加並行查詢選項;

4)增加或刪除分割槽;

5)重建表以減少碎片;

6)將堆表改為索引組織表或相反的操作;

7)增加或刪除一個列。

使用線上重定義的一些限制條件:

1 There must be enough space to hold two copies of the table.

2 Primary key columns cannot be modified.

3 Tables must have primary keys.

4 Redefinition must be done within the same schema.

5 New columns added cannot be made NOT NULL until after the redefinition operation.

6 Tables cannot contain LONGs, BFILEs or User Defined Types.

7 Clustered tables cannot be redefined.

8 Tables in the SYS or SYSTEM schema cannot be redefined.

9 Tables with materialized view logs or materialized views defined on them cannot be redefined.

10 Horizontal sub setting of data cannot be performed during the redefinition.

 

Oracle 10.2.0.411.1.0.7 版本下,線上重定義可能會遇到如下bug

Bug 7007594 - ORA-600 [12261]

http://blog.csdn.net/tianlesoftware/archive/2011/03/02/6218681.aspx

 

線上重定義的大致操作流程如下:

1)建立基礎表A,如果存在,就不需要操作。

2)建立臨時的分割槽表B

3)開始重定義,將基表A的資料匯入臨時分割槽表B

4)結束重定義,此時在DB Name Directory裡,已經將2個表進行了交換。即此時基表A成了分割槽表,我們建立的臨時分割槽表成了普通表。 此時我們可以刪除我們建立的臨時表B。它已經是普通表。

 

----建立測試表

sys@ORCL>create user shall identified by shall;

sys@ORCL>grant connect,resource to shall;

sys@ORCL>grant select on dba_objects to shall;

shall@ORCL>create table zhong(id number(10) primary key,z_date date);

shall@ORCL>insert into zhong select rownum,created from dba_objects;

86435 rows created.

shall@ORCL>create index ind_zhong_z_date on zhong(z_date);

 

----收集統計資訊

sys@ORCL>exec dbms_stats.gather_table_stats('shall','zhong',cascade => true);

 

----建立臨時分割槽表

create table par_table (id number primary key,z_time date)

partition by range(z_time)

(        partition part1 values less than (to_date('2013-7-1','yyyy-mm-dd')),

         partition part2 values less than (to_date('2014-7-1','yyyy-mm-dd')),

         partition part3 values less than (maxvalue)

);

 

----進行重定義操作

------檢查重定義的合理性

sys@ORCL>exec dbms_redefinition.can_redef_table('shall','zhong');

PL/SQL procedure successfully completed.

 

------如果沒有問題,開始重定義,這個過程可能要等一會

------這裡注意:如果分割槽表和原表列名相同,可以用如下方式進行:

begin

dbms_redefinition.start_redef_table

(        uname => 'SHALL',

         orig_table => 'zhong',

         int_table => 'par_table');

end;

/

 

------如果分割槽表的列名和原來的不一致,那麼在開始重定義的時候,需要重新指定對映關係:

exec dbms_redefinition.start_redef_table (   'SHALL',    'zhong',    'par_table',      'id id,z_date z_time',         dbms_redefinition.cons_use_pk);

------這一步操作結束後,資料就已經同步到這個臨時分割槽表裡了

shall@ORCL>select count(*) from par_table partition(part2);

  COUNT(*)

----------

     86198

 

----同步新表,這是可選操作

begin

dbms_redefinition.sync_interim_table

(        uname => 'SHALL',

         orig_table => 'zhong',

         int_table => 'par_table');

end;

/

 

----建立索引(線上重定義資料後,索引需要單獨建立)

shall@ORCL>create index ind_par_date on par_table(z_time);

 

----收集新表統計資訊

sys@ORCL>exec dbms_stats.gather_table_stats('shall','par_table',cascade => true);

 

----結束重定義

begin

dbms_redefinition.finish_redef_table

(        uname => 'SHALL',

         orig_table => 'zhong',

         int_table => 'par_table');

end;

/

------結束重定義的意義:基表zhong 和臨時分割槽表par_table 進行了交換。 此時臨時分割槽表par_table成了普通表,我們的基表zhong成了分割槽表。我們在重定義的時候,基表zhong是可以進行DML操作的。 只有在2個表進行切換的時候會有短暫的鎖表。

 

----驗證:

shall@ORCL>select count(*) from par_table partition(part2);

select count(*) from par_table partition(part2)

                     *

ERROR at line 1:

ORA-14501: object is not partitioned

shall@ORCL>select count(*) from par_table;

  COUNT(*)

----------

     86435

 

shall@ORCL>drop table par_table;

shall@ORCL>alter index ind_par_date rename to ind_zhong_z_date;

 

shall@ORCL>select table_name,partition_name from user_tab_partitions where table_name='ZHONG';

TABLE_NAME           PARTITION_NAME

-------------------- ------------------------------

ZHONG                PART1

ZHONG                PART2

ZHONG                PART3

shall@ORCL>select count(*) from zhong;

  COUNT(*)

----------

     86435

shall@ORCL>select count(*) from zhong partition(part1);

  COUNT(*)

----------

         0

shall@ORCL>select count(*) from zhong partition(part2);

  COUNT(*)

----------

     86198

shall@ORCL>select count(*) from zhong partition(part3);

  COUNT(*)

----------

       237

 

8.分割槽表索引

    分割槽索引分為本地(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 test_ts15,

                   partition p_other tablespace test_ts15

);

這個分割槽是按照areacode來的。但是索引的引導列是ID 所以它就是非字首分割槽索引。

 

全域性分割槽索引不支援非字首的分割槽索引,如果建立,報錯如下:

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 分割槽索引必須加上字首

 

8.1 Local本地索引

    對於local索引,當表的分割槽發生變化時,索引的維護由Oracle自動進行。

注意事項:

1> 區域性索引一定是分割槽索引,分割槽鍵等同於表的分割槽鍵。

2> 字首和非字首索引都可以支援索引分割槽消除,前提是查詢的條件中包含索引分割槽鍵。

3> 區域性索引只支援分割槽內的唯一性,無法支援表上的唯一性,因此如果要用區域性索引去給表做唯一性約束,則約束中必須要包括分割槽鍵列。

4> 區域性分割槽索引是對單個分割槽的,每個分割槽索引只指向一個表分割槽;全域性索引則不然,一個分割槽索引能指向n個表分割槽,同時,一個表分割槽,也可能指向n個索引分割槽,對分割槽表中的某個分割槽做truncate或者moveshrink等,可能會影響到n個全域性索引分割槽,正因為這點,區域性分割槽索引具有更高的可用性。

5> 點陣圖索引必須是區域性分割槽索引。

6> 區域性索引多應用於資料倉儲環境中。

7> B樹索引和點陣圖索引都可以分割槽,但是HASH索引不可以被分割槽。

 

示例:

shall@ORCL>drop index IX_CUSTADDR_ID;

shall@ORCL> create index ix_custaddr_local_id on custaddr(id) local;

和下面SQL 效果相同,因為local索引就是分割槽索引:

shall@ORCL>Select index_name,status From user_indexes Where table_name='CUSTADDR';

shall@ORCL>drop index IX_CUSTADDR_LOCAL_ID;

create index ix_custaddr_local_id_p on custaddr(id)

local (

partition t_list555 tablespace test_ts15,

partition p_other tablespace test_ts15

);

create index ix_custaddr_local_id_p on custaddr(id)

                                       *

ERROR at line 1:

ORA-14024: number of partitions of LOCAL index must equal that of the underlying table

 

 

shall@ORCL>select partition_name from user_tab_partitions where table_name=upper('custaddr');

PARTITION_NAME

------------------------------------------------------------

P_OTHER

T_LIST552

T_LIST555

 

create index ix_custaddr_local_id_p on custaddr(id)

local (

partition t_list552 tablespace test_ts15,

partition t_list555 tablespace test_ts15,

partition p_other tablespace test_ts15

);

 

create index ix_custaddr_local_areacode on custaddr(areacode) local;

 

驗證2個索引的型別:

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.

1Global 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.

2Global 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.

3Maintenance 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

 

 

 

----示例全域性索引,全域性索引對所有分割槽型別都支援:

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

drop index IX_CUSTADDR_LOCAL_ID_P;

create index ix_custaddr_global_id on custaddr(id) global;

 

----示例2:全域性分割槽索引,只支援Range 分割槽和Hash 分割槽:

1> 建立2個測試分割槽表:

create table pdba (id number, time date) 

partition by range (time)

(         partition p1 values less than (to_date('2016-1-1', 'yyyy-mm-dd')),

          partition p2 values less than (to_date('2016-6-1', 'yyyy-mm-dd')),

          partition p3 values less than (to_date('2016-12-1', 'yyyy-mm-dd')),

          partition p4 values less than (maxvalue)

          );

 

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:全域性分割槽索引

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)

 );

----這個是有字首的分割槽索引。

 

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 分割槽索引必須加上字首

 

create index i_time_global on PDBA(time) global

 partition by range(time)

 (       partition p1 values less than (TO_DATE('2016-12-1', 'YYYY-MM-DD')),

         partition p2 values less than (maxvalue)

 );

----有字首的分割槽索引

 

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

 

CREATE INDEX ix_hash ON PDBA (id,time) GLOBAL

 PARTITION BY HASH (id)

 (       PARTITION p1,

         PARTITION p2,

         PARTITION p3,

         PARTITION p4);

----只要索引的引導列包含分割槽鍵,就是有字首的分割槽索引。

 

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

ix_hash            pdba         hash                   global       prefixed

 

4.3 索引重建問題

1> 分割槽索引重建

    對於分割槽索引,不能整體進行重建,只能對單個分割槽進行重建。語法如下:

Alter index idx_name rebuild partition index_partition_name [online nologging]

說明:

online:表示重建的時候不會鎖表。

nologging:表示建立索引的時候不生成日誌,加快速度。

 

Select index_name,status From user_indexes Where table_name='PDBA';

select PARTITION_NAME from user_tab_partitions where table_name='PDBA';

select partition_name from user_ind_partitions where index_name='I_ID_GLOBAL';

alter index I_ID_GLOBAL rebuild partition p1;

alter index I_TIME_GLOBAL rebuild partition p2 online;

 

 

    如果要重建整個分割槽索引,只能drop表原索引,在重新建立:

drop index I_ID_GLOBAL;

create index i_id_global on PDBA(id) local tablespace test_ts15;

select partition_name,tablespace_name from user_ind_partitions where index_name='I_ID_GLOBAL';

 

----線上重建操作要求較大的臨時表空間和排序區:

select index_name,partition_name from user_ind_partitions where index_name='I_TIME_GLOBAL';

INDEX_NAME PARTITION_NAME

------------------------------ ------------------------------

I_TIME_GLOBAL P1

I_TIME_GLOBAL P2

 

alter index I_TIME_GLOBAL rebuild partition p1 online nologging;

alter index I_TIME_GLOBAL rebuild partition p2 online nologging;

 

 

2> 全域性索引重建

    Oracle 會自動維護分割槽索引,對於全域性索引,如果在對分割槽表操作時,沒有指定update index,則會導致全域性索引失效,需要重建。

Select index_name,status From user_indexes Where table_name='PDBA';

select index_name,table_name,status from user_indexes where INDEX_NAME='I_ID_GLOBAL';

index_name     table_name    status

------------------------------ ------------------------------ ---------- -------

I_ID_GLOBAL             pdba                  valid

 

----刪除一個分割槽:

select PARTITION_NAME from user_tab_partitions where table_name='PDBA';

select partition_name from user_ind_partitions where index_name='I_ID_GLOBAL';

alter table pdba drop partition p2;

 

select index_name,table_name,status from user_indexes where INDEX_NAME='I_ID_GLOBAL';

index_name     table_name    status

------------------------------ ------------------------------ ---------- -------

I_ID_GLOBAL             pdba                  valid

 

----split 分割槽:

alter table pdba split partition P4 at(TO_DATE('2016-12-21 00:00:00','YYYY-MM-DD HH24:MI:SS')) into (partition P4, partition P5);

 

select PARTITION_NAME from user_tab_partitions where table_name='PDBA';

select partition_name from user_ind_partitions where index_name='I_ID_GLOBAL';

 

select index_name,table_name,status from user_indexes where INDEX_NAME='I_ID_GLOBAL';

index_name     table_name    status

------------------------------ ------------------------------ ---------- -------

I_ID_GLOBAL             pdba                  valid

 

 

----drop 分割槽時使用update indexes

alter table pdba drop partition P4 UPDATE INDEXES;

select index_name,table_name,status from user_indexes where INDEX_NAME='I_ID_GLOBAL';

index_name     table_name    status

------------------------------ ------------------------------ ---------- -------

I_ID_GLOBAL             pdba                  valid

 

----做了幾個drop分割槽操作,全域性索引沒有失效,有點奇怪。 不過如果在生產環境中,還是小心點。

 

 

重建全域性索引命令如下:

Alter index idx_name rebuild [online nologging]

示例:

Select index_name,status From user_indexes Where table_name='PDBA';

select PARTITION_NAME from user_tab_partitions where table_name='PDBA';

select partition_name from user_ind_partitions where index_name='I_ID_GLOBAL';

 

SQL> Alter index I_ID_GLOBAL rebuild online nologging;

索引已更改。

 

    select table_name,partition_name,tablespace_name from user_tab_partitions where table_name='PDBA';

    透過user_tab_partitions 表可以檢視到每個分割槽對應的tablesapce_name. 但是,如果透過all_tables 表,卻查不到分割槽表對應表空間的資訊。

分割槽表:看不到tablespace_name

SQL> select owner,table_name,tablespace_name,cluster_name from all_tables where table_name='PDBA';

普通表:是可以看到tablespace_name

SQL> select owner,table_name,tablespace_name,cluster_name from all_tables where table_name='test1';

 

3> 分割槽索引與全域性索引 重建案例2

reference                            http://blog.csdn.net/weiwangsisoftstone/article/details/37615245

 

----建立分割槽表:

create table test( 

      id number, 

      name varchar2(20) 

partition by range(id)

(       partition p1 values less than (1000), 

          partition p2 values less than (2000), 

          partition p3 values less than (maxvalue) 

); 

 

----建立分割槽索引

----LOCAL索引結構

create index ind_test_id_local on test(id) local;

 

----重新在name列上建立一個GLOBAL的索引

create index ind_test_name_global on test(name) global;

 

Select index_name,status From user_indexes Where table_name='TEST';

select PARTITION_NAME from user_tab_partitions where table_name='TEST';

select partition_name from user_ind_partitions where index_name='IND_TEST_ID_LOCAL';

select partition_name from user_ind_partitions where index_name='IND_TEST_NAME_GLOBAL';

 

insert into test values(999,'p1');

insert into test values(1999,'p2');

insert into test values(2999,'p3');

 

SQL> select * from test;

        ID NAME

---------- ----------

       999 p1

      1999 p2

      2999 p3

 

----查詢當前使用者下有哪些是分割槽表: 

SELECT table_name, partitioning_type,partition_count FROM USER_PART_TABLES;

TABLE_NAME                     PARTITION PARTITION_COUNT

------------------------------ --------- ---------------

TEST                           RANGE                   3

 

----查詢當前使用者下有哪些分割槽索引: 

SELECT index_name,table_name FROM USER_PART_INDEXES;

INDEX_NAME                     TABLE_NAME

------------------------------ ------------------------------

ID_LOCAL                       TEST

 

----索引對應的分割槽以及索引的狀態

select index_name,partition_name,status  from user_ind_partitions;

INDEX_NAME                     PARTITION_NAME                 STATUS

------------------------------ ------------------------------ --------

ID_LOCAL                       P2                             USABLE

ID_LOCAL                       P1                             USABLE

ID_LOCAL                       P3                             USABLE

 

----移動分割槽表使索引失效

alter table test move partition p1  tablespace users;

alter table test move partition p2  tablespace users;

 

----本地分割槽失效

select index_name,partition_name,status  from user_ind_partitions;

INDEX_NAME                     PARTITION_NAME       STATUS

------------------------------ -------------------- ----------------

IND_TEST_ID_LOCAL              P3                   USABLE

IND_TEST_ID_LOCAL              P2                   UNUSABLE

IND_TEST_ID_LOCAL              P1                   UNUSABLE

 

----重建分割槽索引

alter index IND_TEST_ID_LOCAL rebuild partition p1;

 

----索引狀態已更改。

select index_name,partition_name,status  from user_ind_partitions;

INDEX_NAME                     PARTITION_NAME       STATUS

------------------------------ -------------------- ----------------

IND_TEST_ID_LOCAL              P1                   USABLE

IND_TEST_ID_LOCAL              P3                   USABLE

IND_TEST_ID_LOCAL              P2                   UNUSABLE

 

alter table test modify partition p2 rebuild unusable local indexes;

SQL> select index_name,partition_name,status  from user_ind_partitions;

INDEX_NAME                     PARTITION_NAME       STATUS

------------------------------ -------------------- ----------------

IND_TEST_ID_LOCAL              P2                   USABLE

IND_TEST_ID_LOCAL              P1                   USABLE

IND_TEST_ID_LOCAL              P3                   USABLE

 

----全域性索引的狀態:

select index_name,table_name,status from user_indexes where index_name='IND_TEST_NAME_GLOBAL';

INDEX_NAME                     TABLE_NAME                     STATUS

------------------------------ ------------------------------ --------

IND_TEST_NAME_GLOBAL                    TEST                           UNUSABLE

 

----重建全域性分割槽索引

alter index IND_TEST_NAME_GLOBAL rebuild;

----索引狀態已更改。

select index_name,table_name,status from user_indexes where index_name='IND_TEST_NAME_GLOBAL';

INDEX_NAME                     TABLE_NAME                     STATUS

------------------------------ ------------------------------ --------

IND_TEST_NAME_GLOBAL                    TEST                          VALID

                  

----刪除分割槽也會導致全域性分割槽索引失效

alter table test truncate partition p1;

 

select index_name,partition_name,status  from user_ind_partitions;

INDEX_NAME                     PARTITION_NAME       STATUS

------------------------------ -------------------- ----------------

IND_TEST_ID_LOCAL              P2                   USABLE

IND_TEST_ID_LOCAL              P1                   USABLE

IND_TEST_ID_LOCAL              P3                   USABLE

 

select index_name,table_name,status from user_indexes where index_name='IND_TEST_NAME_GLOBAL';

INDEX_NAME                     TABLE_NAME                     STATUS

------------------------------ ------------------------------ --------

IND_TEST_NAME_GLOBAL                    TEST                           UNUSABLE

 

 

 

 

 

reference                            http://www.cnblogs.com/leiOOlei/archive/2012/06/08/2541306.html

                                     http://blog.csdn.net/hijiankang/article/details/9173877

 

 

 

 

 

 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31444259/viewspace-2154124/,如需轉載,請註明出處,否則將追究法律責任。

相關文章