当前位置: 首页 > 工具软件 > unused > 使用案例 >

oracle unused用法,set unused的用法(ORACLE刪除字段)

颛孙英勋
2023-12-01

set unused的用法(ORACLE刪除字段)

一、問題

現場有一張大數據量的分區表,數據量在10G以上。因某種原因需要刪除其中的某些字段。如果直接用

alter table1 drop (column1,column2);

或者alter table1 drop column column1;和alter table1 drop column column2;

的話,需要執行很長時間,這期間該表被鎖,會影響到其它應用。

二、解決方法

使用set unused,等系統空閑時再drop unused。

1.

alter table table1 set unused (column1,column2);

或者

alter table table1 set unused column column1;

alter table table2 set unused column column2;

2.

alter table drop unused columns checkpoint 1000;

三、知識點(set unused的用法)

原理:清楚掉字典信息(撤消存儲空間),不可恢復。

可以使用 SET UNUSED 選項標記一列或者多列不可用。

使用DROP SET UNUSED 選項刪除被標記為不可用的列。

語法:

ALTER TABLE table SET UNUSED (COLlist多個) 或者 ALTER TABLE table SET UNUSED COLUMN col單個;

ALTER TABLE table DROP UNUSED COLUMNS [checkpoint 1000];

set unused不會真地刪除字段。

除了alter table drop field外,也可以

alter table set unused field;

alter table drop unused;

set unused系統開銷比較小,速度較快,所以可以先set unused,然后在系統負載較小時,再drop。如系統負載不大,也可以直接drop。

不管用何種方法,都不會收回空間。

如果你有這個需求,要刪除某一個表上的某些列,但是由於這個表擁有非常大量的資料,如果你在尖峰時間直接執行 ALTER TABLE ABC DROP(COLUMN);可能會收到

ORA-01562 - failed to extend rollback segment number string,

這是因為在這個刪除列的過程中你可能會消耗光整個RBS,造成這樣的錯誤出現,因此這樣的做法並不是一個好方法,就算你拼命的加大RBS空間來應付這個問題,也不會是個好主意。

我的建議做法:

1>

CREATE TABLE T1 (A NUMBER,B NUMBER);

SQL> begin

2 for i in 1 …… 100000

3 loop

4 insert into t1 values (i,100);

5 end loop;

6 commit;

7 end;

SQL> select count(*) from t1;

 类似资料: