Oracle資料庫中Constraint約束的四對屬性

逍遙三人發表於2012-02-09

我們在建立資料庫的時候會建立一些Constraint約束,包括主鍵、外來鍵等。那麼約束它有屬性嗎?答案是肯定的,本文我們就介紹一下Oracle資料庫Constraint約束的四對屬性:Deferrable/not deferrable, Deferred/immediate, enalbe/disable, validate/novalidate,接下來就讓我們來一起了解一下這一過程吧。

1.Deferrable,not deferrable(default value)

1)這對屬性是定義是否可以defer,defer是指作檢查的時機,如果在commit的時check為Defer,否則為immediate .只有在設定Deferrable才可以設定另一個屬性2-- Deferred,immediate.

2)設定defer check的方法有兩種(前提是建立了Deferrable的contraint)

a.通過建contraint時指定Deferred值

b.通過會話級別的語句修改

SET CONSTRAINT(s) contraint_name/all immediate/deferred.

3)這對屬性是在建立的constraint的時候定義的,不能被修改.

4)notice:如果建立了Deferrable的uk或pk,只會建立相應的nonuniquce index,而不會建立uniquce index

2.Deferred,immediate(default value)

1)這對屬性定義是否defer. Deferred: check on commit; immediate: check immediate.

2)If constraint is not deferrable,immediate is only choice.

3) For example:

  1. CREATE TABLE games  
  2.  
  3. (scores NUMBER, CONSTRAINT unq_num UNIQUE (scores)  
  4.  
  5. INITIALLY DEFERRED DEFERRABLE);  
  6.  
  7. insert into games values(1);  
  8.  
  9. insert into games values(1);  
  10.  
  11. commit;--在此報錯  
  12.  
  13. You will not get a error util you commit it;  
  14.  
  15. SET CONSTRAINT(s) unq_num immediate;--修改屬性  
  16.  
  17. insert into games values(2);  
  18.  
  19. insert into games values(2);--在此報錯  
  20.  
  21. commit;  
  22.  
  23. You will get a error when you execute the second sql; 

3. novalidate, validate(default value)

1) 這對屬性定義constraint是否對錶中已經存在的資料作檢查,例如:

  1. create table t(id number);  
  2.  
  3. insert into t values(1);  
  4.  
  5. insert into t values(2);  
  6.  
  7. alter table t add constraint ch_100 check(id>=100); --失敗  
  8.  
  9. alter table t add constraint ch_100 check(id>=100) novalidate;--成功 

2) notice:與唯一索引相關的contraint(例如pk,uk),要做到以上的效果還必須設定為Deferrable(只是建立非唯一性索引),因為在維護索引是,如果違反了唯一性也會報錯,所以必須建立非唯一性索引.例如:

  1. drop table t;  
  2.  
  3. create table t(id number);  
  4.  
  5. insert into t values(1);  
  6.  
  7. insert into t values(1);  
  8.  
  9. alter table t add constraint ch_100 unique(id) ; --報錯  
  10.  
  11. alter table t add constraint ch_100 unique(id) novalidate; --報錯  
  12.  
  13. alter table t add constraint ch_100 unique(id) deferrable novalidate;--成功 

4. disable, enalbe(default value)

1) 啟用和禁用constraint.在新建pk和uk時定義了disable,將不建立相應的索引.

  1. ALTER TABLE dept DISABLE CONSTRAINT dname_ukey;  
  2.  
  3. ALTER TABLE dept ENABLE CONSTRAINT dname_ukey;  
  4.  
  5. alter table t add constraint ch_100 unique(id) disable; 

2) DISABLE uk或pk作了些什麼:

Disable非deferrable 的pk、uk,將刪除相應的索引(除非指定了keep index,但是keep下來的索引是唯一性的,insert資料時還是要作唯一性檢查的),在enable時重建索引.

Disbale deferrable 的pk、uk將保留原來的索引(因為原來的索引就是非唯一性的,不影響insert的操作).

3) 一些操作經驗:

KEEP INDEX要注意的:

a.ALTER TABLE games DISAble CONSTRAINT fk_num keep index;--唯一索引被保留,所以還是不能插入重複的資料.不應該keep index.

b.ALTER TABLE games DISAble CONSTRAINT fk_num;--如果上一步被執行,那麼此語句什麼都不做,唯一索引仍被保留,此時應該先enable在disable.如果原來的狀態是able的話,那麼唯一索引將被刪除.

關於Oracle資料庫constraint約束的四對屬性的知識就介紹到這裡了,希望本次的介紹能夠對您有所收穫!

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

相關文章