分割槽表的分割槽資料刪除、truncate會對全域性和區域性索引產生什麼影響

litterbaby發表於2007-05-29
分割槽表的分割槽資料刪除、truncate會對全域性和區域性索引產生什麼影響[@more@]

分割槽表的分割槽資料刪除、truncate會對全域性和區域性索引產生什麼影響

總結:康標

email

建立測試表t

SQL> create table t

2 partition by range (a)

3 (

4 partition p1 values less than (10000) tablespace part1,

5 partition p2 values less than (20000) tablespace part2,

6 partition p3 values less than (30000) tablespace part3,

7 partition p4 values less than (40000) tablespace part4,

8 partition p5 values less than (maxvalue) tablespace part5

9 )

10 as select rownum a ,b.* from all_objects b;

建立一個本地索引

SQL> create index t1 on t(a) local;

Index created

建立一個全域性索引

SQL> create index t2 on t(object_id);

Index created

檢視索引的狀態

SQL> select index_name,status from user_indexes;

INDEX_NAME STATUS

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

T1 N/A

T2 VALID

SQL> select index_name,partition_name,status from user_ind_partitions

2 ;

INDEX_NAME PARTITION_NAME STATUS

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

T1 P1 USABLE

T1 P2 USABLE

T1 P3 USABLE

T1 P4 USABLE

T1 P5 USABLE

刪除部分資料

SQL> delete from t where a < 100;

99 rows deleted

SQL> commit;

Commit complete

SQL> select index_name,partition_name,status from user_ind_partitions;

INDEX_NAME PARTITION_NAME STATUS

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

T1 P1 USABLE

T1 P2 USABLE

T1 P3 USABLE

T1 P4 USABLE

T1 P5 USABLE

SQL> select index_name,status from user_indexes;

INDEX_NAME STATUS

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

T1 N/A

T2 VALID

從上面可以看到,刪除資料對本地和全域性索引都沒有什麼影響。

看看使用truncate刪除表的分割槽。本地索引沒有什麼問題

SQL> alter table t truncate partition p1;

Table truncated

SQL> select index_name,partition_name,status from user_ind_partitions;

INDEX_NAME PARTITION_NAME STATUS

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

T1 P1 USABLE

T1 P2 USABLE

T1 P3 USABLE

T1 P4 USABLE

T1 P5 USABLE

全域性索引的狀態:產生不可用的狀態。就是說truncate只是會對全域性索引產生影響

SQL> select count(*) from t where a=1000;

COUNT(*)

----------

0

SQL> select index_name,status from user_indexes;

INDEX_NAME STATUS

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

T1 N/A

T2 UNUSABLE

總結:

1刪除資料對本地和全域性索引都沒有什麼影響。truncate刪除表的分割槽。本地索引沒有問題,但是會對全域性索引產生影響

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

相關文章