【實驗】【PARTITION】RANGE分割槽表刪除分割槽
語法
刪除分割槽表的分割槽:
alter table Partition_Table drop partition Partition_Name update indexes;
刪除子分割槽表的分割槽:
alter table Partition_Table drop subpartition Partition_Name update indexes;
1.建立樣例分割槽表
sec@ora10g> create table t_partition_range (id number,name varchar2(50))
2 partition by range(id)(
3 partition t_range_p1 values less than (10) tablespace tbs_part01,
4 partition t_range_p2 values less than (20) tablespace tbs_part02,
5 partition t_range_p3 values less than (30) tablespace tbs_part03,
6 partition t_range_pmax values less than (maxvalue) tablespace tbs_part04);
Table created.
sec@ora10g> select table_name,partition_name,high_value,tablespace_name from user_tab_partitions where table_name='T_PARTITION_RANGE' order by partition_position;
TABLE_NAME PARTITION_NAME HIGH_VALUE TABLESPACE_NAME
-------------------- -------------------- ---------- ---------------
T_PARTITION_RANGE T_RANGE_P1 10 TBS_PART01
T_PARTITION_RANGE T_RANGE_P2 20 TBS_PART02
T_PARTITION_RANGE T_RANGE_P3 30 TBS_PART03
T_PARTITION_RANGE T_RANGE_PMAX MAXVALUE TBS_PART04
2.刪除T_RANGE_P3分割槽
sec@ora10g> alter table t_partition_range drop partition T_RANGE_P3 update indexes;
Table altered.
sec@ora10g> select table_name,partition_name,high_value,tablespace_name from user_tab_partitions where table_name='T_PARTITION_RANGE' order by partition_position;
TABLE_NAME PARTITION_NAME HIGH_VALUE TABLESPACE_NAME
-------------------- -------------------- ---------- ---------------
T_PARTITION_RANGE T_RANGE_P1 10 TBS_PART01
T_PARTITION_RANGE T_RANGE_P2 20 TBS_PART02
T_PARTITION_RANGE T_RANGE_PMAX MAXVALUE TBS_PART04
3.刪除分割槽是較迅速的清理資料的手段(因為是DDL語句)
sec@ora10g> select * from t_partition_range partition(t_range_p1);
ID NAME
---------- --------------------------------------------------
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
6 rows selected.
sec@ora10g> select * from t_partition_range;
ID NAME
---------- --------------------------------------------------
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
6 rows selected.
sec@ora10g> alter table t_partition_range drop partition t_range_p1 update indexes;
Table altered.
sec@ora10g> select * from t_partition_range partition(t_range_p1);
select * from t_partition_range partition(t_range_p1)
*
ERROR at line 1:
ORA-02149: Specified partition does not exist
sec@ora10g> select * from t_partition_range;
no rows selected
這也體現了分割槽技術在海量資料庫的維護上的靈活性。
-- The End --
刪除分割槽表的分割槽:
alter table Partition_Table drop partition Partition_Name update indexes;
刪除子分割槽表的分割槽:
alter table Partition_Table drop subpartition Partition_Name update indexes;
1.建立樣例分割槽表
sec@ora10g> create table t_partition_range (id number,name varchar2(50))
2 partition by range(id)(
3 partition t_range_p1 values less than (10) tablespace tbs_part01,
4 partition t_range_p2 values less than (20) tablespace tbs_part02,
5 partition t_range_p3 values less than (30) tablespace tbs_part03,
6 partition t_range_pmax values less than (maxvalue) tablespace tbs_part04);
Table created.
sec@ora10g> select table_name,partition_name,high_value,tablespace_name from user_tab_partitions where table_name='T_PARTITION_RANGE' order by partition_position;
TABLE_NAME PARTITION_NAME HIGH_VALUE TABLESPACE_NAME
-------------------- -------------------- ---------- ---------------
T_PARTITION_RANGE T_RANGE_P1 10 TBS_PART01
T_PARTITION_RANGE T_RANGE_P2 20 TBS_PART02
T_PARTITION_RANGE T_RANGE_P3 30 TBS_PART03
T_PARTITION_RANGE T_RANGE_PMAX MAXVALUE TBS_PART04
2.刪除T_RANGE_P3分割槽
sec@ora10g> alter table t_partition_range drop partition T_RANGE_P3 update indexes;
Table altered.
sec@ora10g> select table_name,partition_name,high_value,tablespace_name from user_tab_partitions where table_name='T_PARTITION_RANGE' order by partition_position;
TABLE_NAME PARTITION_NAME HIGH_VALUE TABLESPACE_NAME
-------------------- -------------------- ---------- ---------------
T_PARTITION_RANGE T_RANGE_P1 10 TBS_PART01
T_PARTITION_RANGE T_RANGE_P2 20 TBS_PART02
T_PARTITION_RANGE T_RANGE_PMAX MAXVALUE TBS_PART04
3.刪除分割槽是較迅速的清理資料的手段(因為是DDL語句)
sec@ora10g> select * from t_partition_range partition(t_range_p1);
ID NAME
---------- --------------------------------------------------
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
6 rows selected.
sec@ora10g> select * from t_partition_range;
ID NAME
---------- --------------------------------------------------
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
5 Andy1
6 rows selected.
sec@ora10g> alter table t_partition_range drop partition t_range_p1 update indexes;
Table altered.
sec@ora10g> select * from t_partition_range partition(t_range_p1);
select * from t_partition_range partition(t_range_p1)
*
ERROR at line 1:
ORA-02149: Specified partition does not exist
sec@ora10g> select * from t_partition_range;
no rows selected
這也體現了分割槽技術在海量資料庫的維護上的靈活性。
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-608967/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【實驗】【PARTITION】RANGE分割槽表合併分割槽
- 【實驗】【PARTITION】RANGE分割槽表增加分割槽
- 【實驗】【PARTITION】RANGE分割槽表截斷表分割槽(Truncate Partition)
- 【實驗】【PARTITION】RANGE分割槽表移動表分割槽(Move Partition)
- 【實驗】【PARTITION】RANGE分割槽表重新命名錶分割槽(Rename Partition)
- 【實驗】【PARTITION】RANGE分割槽建立
- 實驗】【PARTITION】RANGE分割槽建立【轉】
- ORACLE 範圍分割槽 partition-range分割槽Oracle
- 【實驗】【PARTITION】RANGE分割槽表未指定maxvalue分割槽將無法插入相關資料
- 全面學習分割槽表及分割槽索引(9)--刪除表分割槽索引
- delete_partition.pl 刪除分割槽delete
- 深入解析partition-range分割槽
- 分割槽表PARTITION table
- Oracle帶區域性分割槽索引的分割槽表刪除舊分割槽新增新分割槽Oracle索引
- Oracle Interval Partition 自動分割槽表-實驗Oracle
- MySQL 分割槽表 partition線上修改分割槽欄位MySql
- Oracle分割槽表基礎運維-09刪除分割槽Oracle運維
- 對刪除分割槽的分割槽表執行TSPITR
- 全面學習分割槽表及分割槽索引(16)--增加和刪除索引分割槽索引
- 【實驗】【PARTITION】交換分割槽時分割槽表有主鍵目標表亦需有主鍵
- Oracle分割槽表(Partition Table)Oracle
- 分割槽表PARTITION table(轉)
- oracle分割槽partition及分割槽索引partition index(一)Oracle索引Index
- 【實驗】【PARTITION】exp匯出分割槽表資料
- 非分割槽錶轉換為分割槽表和partition indexIndex
- MySQL RANGE分割槽MySql
- 全面學習分割槽表及分割槽索引(6)--建立range-list組合分割槽索引
- oracle composite partition組合分割槽_composite partition rangeOracle
- Oracle分割槽表基礎運維-07增加分割槽(6RANGE_RANGE)Oracle運維
- partition 分割槽表重新命名
- 深入學習分割槽表及分割槽索引(5)--建立range-hash組合分割槽(續)索引
- 刪除LINUX分割槽Linux
- Linux 分割槽刪除Linux
- swap分割槽新增刪除
- ORACLE刪除-表分割槽和資料Oracle
- 資料表分割槽分割與刪除歷史資料
- oracle分割槽及分割槽索引partition_partition index_維護(一)Oracle索引Index
- oracle分割槽及分割槽索引partition_partition index_維護(二)Oracle索引Index