oracle sql defer VS disable

a 夏天 提交于 2020-03-28 06:40:44

问题


In oracle sql, setting a constraint to deferred VS disabling a constraint seem to have similar functionalities. Are there any significant differences between the two? It would be much appreciated if you can illustrate their uses with real world scenarios.

thanks


回答1:


A disabled constraint is one that's defined in the database but not enforced at all. (Like dropping a constraint only it's easier to switch back on.) As for deferrable:

http://docs.oracle.com/cd/E18283_01/server.112/e16508/glossary.htm#CHDIBAAA

deferrable constraint

A constraint that permits a SET CONSTRAINT statement to defer constraint checking until after the transaction is committed. A deferrable constraint enables you to disable the constraint temporarily while making changes that might violate the constraint.

It's worth noting:

http://docs.oracle.com/cd/B28359_01/server.111/b28286/clauses002.htm

You cannot alter the deferrability of a constraint. Whether you specify either of these parameters, or make the constraint NOT DEFERRABLE implicitly by specifying neither of them, you cannot specify this clause in an ALTER TABLE statement. You must drop the constraint and re-create it.



来源:https://stackoverflow.com/questions/18281078/oracle-sql-defer-vs-disable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!