熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

ORACLE的索引和約束詳解

2022-06-13   來源: Oracle 

  Oracle的約束

* 如果某個約束只作用於單獨的字段即可以在字段級定義約束也可以在表級定義約束但如果某個約束作用於多個字段
必須在表級定義約束
* 在定義約束時可以通過CONSTRAINT關鍵字為約束命名如果沒有指定ORACLE將自動為約束建立默認的名稱

定義primary key約束(單個字段)
create table employees (empno number() primary key)

指定約束名
create table employees (empno number() constraint emp_pk primary key)

定義primary key約束(多個字段在表級定義約束)
create table employees
(empno number()
deptno number() not null
constraint emp_pk primary key(empnodeptno)
using index tablespace indx
storage (initial K
next K
)
)

ORACLE自動會為具有PRIMARY KEY約束的字段(主碼字段)建立一個唯一索引和一個NOT NULL約束定義PRIMARY KEY約束時可以為它的索引
指定存儲位置和存儲參數

alter table employees add primary key (empno)
alter table employees add constraint emp_pk primary key (empno)
alter table employees add constraint emp_pk primary key (empnodeptno)

not null約束(只能在字段級定義NOT NULL約束在同一個表中可以定義多個NOT NULL約束)
alter table employees modify deptno not null/null

unique約束
create table employees
( empno number()
ename varchar()
phone varchar()
email varchar() unique
deptno number() not null
constraint emp_ename_phone_uk unique (enamephone)
)

alter table employees
add constraint emp_uk unique(enamephone)
using index tablespace indx

定義了UNIQUE約束的字段中不能包含重復值可以為一個或多個字段定義UNIQUE約束因此UNIQUE即可以在字段級也可以在表級定義
在UNIQUED約束的字段上可以包含空值

foreign key約束

* 定義為FOREIGN KEY約束的字段中只能包含相應的其它表中的引用碼字段的值或者NULL值
* 可以為一個或者多個字段的組合定義FOREIGN KEY約束
* 定義了FOREIGN KEY約束的外部碼字段和相應的引用碼字段可以存在於同一個表中這種情況稱為自引用
* 對同一個字段可以同時定義FOREIGN KEY約束和NOT NULL約束

定義了FOREIGN KEY約束的字段稱為外部碼字段被FORGIEN KEY約束引用的字段稱為引用碼字段引用碼必須是主碼或唯一碼包含外部碼的表稱為子表
包含引用碼的表稱為父表

A:
create table employees
(
deptno number() NOT NULL
constraint emp_deptno_fk foreign key (deptno)
references dept (deptno)
)

如果子表中的外部碼與主表中的引用碼具有相同的名稱可以寫成:
B:
create table employees
(
deptno number() NOT NULL
constraint emp_deptno_fk references dept
)

  注意
上面的例子(B)中not null後面沒有加逗號因為這一句的contraint是跟在那一列deptno後面的屬於列定義所以都無需指明列而A例中的是表定義需要指明那一列所以要加逗號不能在列後面定義還可以寫成

create table employees
(empno char()
deptno char() not null constraint emp_deptno_fk references dept
ename varchar()
)
表定義contraint的只能寫在最後再看兩個例子

create table employees
(empno number()
ename varchar()
deptno char() not null constraint emp_deptno_fk references dept
constraint emp_pk primary key(empnoename)
)

create table employees
( empno number()
ename varchar()
phone varchar()
email varchar() unique
deptno number() not null
constraint emp_pk primary key(empnoename)
constraint emp_phone_uk unique (phone)
)

添加foreign key約束(多字段/表級)
alter table employees
add constraint emp_jobs_fk foreign key (jobdeptno)
references jobs (jobiddeptno)
on delete cascade

更改foreign key約束定義的引用行為(delete cascade/delete set null/delete no action)默認是delete on action

引用行為(當主表中一條記錄被刪除時確定如何處理字表中的外部碼字段)
delete cascade : 刪除子表中所有的相關記錄
delete set null : 將所有相關記錄的外部碼字段值設置為NULL
delete no action: 不做任何操作

先刪除原來的外鍵約束再添加約束
ALTER TABLE employees DROP CONSTRAINT emp_deptno_fk;
ALTER TABLE employees ADD CONSTRAINT emp_deptno_fk FOREIGN KEY(deptno) REFERENCES dept(deptno) ON DELETE CASCADE;

check約束
* 在CHECK約束的表達式中必須引用到表中的一個或多個字段並且表達式的計算結果必須是一個布爾值
* 可以在表級或字段級定義
* 對同一個字段可以定義多個CHECK約束同時也可以定義NOT NULL約束
 
create table employees
(sal number()
constraint emp_sal_ck check (sal > )
)

alter table employees
add constraint emp_sal_ck check (sal < )

刪除約束

alter table dept drop unique (dnameloc) 指定約束的定義內容
alter table dept drop constraint dept_dname_loc_uk 指定約束名

刪除約束時默認將同時刪除約束所對應的索引如果要保留索引用KEEP INDEX關鍵字
alter table employees drop primary key keep index

如果要刪除的約束正在被其它約束引用通過ALTER TABLEDROP語句中指定CASCADE關鍵字能夠同時刪除引用它的約束

利用下面的語句在刪除DEPT表中的PRIMARY KEY約束時同時將刪除其它表中引用這個約束的FOREIGN KEY約束:
alter table dept drop primary key cascade

禁用/激活約束(禁用/激活約束會引起刪除和重建索引的操作)
alter table employees disable/enable unique email
alter table employees disable/enable constraint emp_ename_pk
alter tabel employees modify constraint emp_pk disable/enable
alter tabel employees modify constraint emp_ename_phone_uk disable/enable

  如果有FOREIGN KEY約束正在引用UNIQUE或PRIMARY KEY約束則無法禁用這些UNIQUE或PRIMARY KEY約束
這時可以先禁用FOREIGN KEY約束然後再禁用UNIQUE或PRIMARY KEY約束或者可以在ALTER TABLEDISABLE
語句中指定CASCADE關鍵字這樣將在禁用UNIQUE或PRIMARY KEY約束的同時禁用那些引用它們的FOREIGN KEY約束
alter table employees disable primary key cascade

約束數據字典
all_constraints/dba_constraints/user_constraints 約束的基本信息包括約束的名稱類型狀態
(約束類型C(CHECK約束)P(主碼約束)R(外部碼約束)U(唯一碼約束))
all_cons_columns/dba/user 約束對應的字段信息

  Oracle的索引
    索引和對應的表應該位於不同的表空間中oracle能夠並行讀取位於不同硬盤上的數據可以避免產生I/O沖突
B樹索引在B樹的葉節點中存儲索引字段的值與ROWID
唯一索引和不唯一索引都只是針對B樹索引而言
Oracle最多允許包含個字段的復合索引

索引創建策略
導入數據後再創建索引
不需要為很小的表創建索引
對於取值范圍很小的字段(比如性別字段)應當建立位圖索引
限制表中的索引的數目
為索引設置合適的PCTFREE值
存儲索引的表空間最好單獨設定

創建不唯一索引
create index emp_ename on employees(ename)
tablespace users
storage()
pctfree ;

創建唯一索引
create unique index emp_email on employees(email)
tablespace users;

創建位圖索引
create bitmap index emp_sex on employees(sex)
tablespace users;

創建反序索引
create unique index order_reinx on orders(order_numorder_date)
tablespace users
reverse;

創建函數索引(函數索引即可以是普通的B樹索引也可以是位圖索引)
create index emp_substr_empno
on employees(substr(empno))
tablespace users;

修改索引存儲參數(與表類似INITIAL和MINEXTENTS參數在索引建立以後不能再改變)
alter index emp_ename storage(pctincrease );

由於定義約束時由oracle自動建立的索引通常是不知道名稱的對這類索引的修改經常是利用alter table using index語句進行的而不是alter index語句

利用下面的語句將employees表中primary key約束對應的索引的PCTFREE參數修改為
alter table employees enable primary key using index pctfree ;

清理索引碎片
合並索引(只是簡單的將B樹葉結點中的存儲碎片合並在一起並不會改變索引的物理組織結構)
alter index emp_pk coalesce;

重建索引(不僅能夠消除存儲碎片還可以改變索引的全部存儲參數設置並且可以將索引移動到其它的表空間中重建索引
實際上就是再指定的表空間中重新建立一個新的索引然後刪除原來的索引)
alter index emp_pk rebuild;

刪除索引
drop index emp_ename;

如果索引中包含損壞的數據塊或者包含過多的存儲碎片需要首先刪除這個索引然後再重建它
如果索引是在創建約束時由oracle自動產生的可以通過禁用約束或刪除約束的方法來刪除對應的索引
在刪除一個表時oracle會自動刪除所有與該表相關的索引

索引數據字典
all_indexes/dba_indexes/user_indexes 索引的基本信息
all_ind_columns/dba_ind_columns/user_ind_columns 索引對應的字段信息


From:http://tw.wingwit.com/Article/program/Oracle/201311/17540.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.