簇其實就是一組表,由一組共用相同資料區塊的多個表組成,將經常一起使用的表組合在一起成簇可以提高處理效率;在一個簇中的表就叫做簇表。
建立順序是:簇→簇表→簇索引→資料
建立簇的格式
CREATE CLUSTER cluster_name
(column date_type [,column datatype]...)
[PCTUSED 40 | integer] [PCTFREE 10 | integer]
[SIZE integer]
[INITRANS 1 | integer] [MAXTRANS 255 | integer]
[TABLESPACE tablespace]
[STORAGE storage]
SIZE:指定估計平均簇鍵,以及與其相關的行所需的位元組數。
1、建立簇
複製代碼 代碼如下: create cluster my_clu (deptno number )
pctused 60
pctfree 10
size 1024
tablespace users
storage (
initial 128 k
next 128 k
minextents 2
maxextents 20
);
2、建立簇表
複製代碼 代碼如下: create table t1_dept(
deptno number ,
dname varchar2 ( 20 )
)
cluster my_clu(deptno);
create table t1_emp(
empno number ,
ename varchar2 ( 20 ),
birth_date date ,
deptno number
)
cluster my_clu(deptno);
3、為簇建立索引
複製代碼 代碼如下:create index clu_index on cluster my_clu;
註:若不建立簇索引,則在插入資料時報錯:ORA-02032: clustered tables cannot be used before the cluster index is built
管理簇
使用ALTER修改簇屬性(必須擁有ALTER ANY CLUSTER的許可權)
1、修改簇屬性
可以修改的簇屬性包括:
* PCTFREE、PCTUSED、INITRANS、MAXTRANS、STORAGE
* 為了儲存簇索引值所有行所需空間的平均值SIZE
* 預設並行度
註:
* 不能修改INITIAL和MINEXTENTS的值
* PCTFREE、PCTUSED、SIZE參數修改後適用於所有資料區塊
* INITRANS、MAXTRANS僅適用於以後分配的資料區塊
* STORAGE參數修改後僅影響以後分配給簇的盤區
例:
複製代碼 代碼如下: alter cluster my_clu
pctused 40
2、刪除簇
複製代碼 代碼如下: drop cluster my_clu; -- 僅適用於刪除空簇
drop cluster my_clu including tables ; -- 刪除簇和簇表
drop cluster my_clu including tables cascade constraints ;--同時刪除外鍵約束
註:簇表可以像普通表一樣刪除。
3、清空簇
複製代碼 代碼如下:truncate cluster my_clu;
註:所有在此簇上的表的資料全部被清空
散列聚簇表
在簇表中,Oracle使用儲存在索引中的索引值來定位表中的行,而在散列聚簇表中,使用了散列函數代替了簇索引,先通過內建函式或者自訂的函數進行散列計算,然後再將計算得到的碼值用於定位表中的行。建立散列簇需要用到HASHKEYS子句。
1、建立散列簇
複製代碼 代碼如下: create cluster my_clu_two(empno number(10) )
pctused 70
pctfree 10
tablespace users
hash is empno
hashkeys 150 ;
說明:
* hash is 子句指明了進行散列的列,如果列是唯一的標示行,就可以將列指定為散列值
* hashkeys 指定和限制散列函數可以產生的唯一的散列值的數量
2、建立散列表
複製代碼 代碼如下: create table t2_emp (
empno number ( 10 ),
ename varchar2 ( 20 ),
birth_date date ,
deptno number )
cluster my_clu_two(empno);
注意:
* 必須設定數值的精度
* 散列簇不能也不用建立索引
* 散列簇不能ALTER:size、hashkeys、hash is參數
不宜用聚簇表的情況
1)如果預料到聚簇中的表會大量修改,聚簇表會對DML的效能產生負面影響
2)非常不適合對單表的全表掃描,因為只能引起對其它表的全表掃描
3)頻繁對錶進行TRUNCATE和載入,因為聚簇中的表是不能TRUNCATE的,只能TRUNCATE簇
4)如果表只是偶爾被串連或者它們的公用列經常被修改,則不要聚簇表
5)如果經常從所有有相同聚簇索引值的表查詢出的結果資料超過一個或兩個Oracle塊,則不要聚簇表
6)如果空間不夠,並且不能為將要插入的新記錄分配額外的空間,那麼不要使用聚簇