what is INITIALLY DEFFERED DEFERRABLE? And what it will do?
Thanks for any help
SrinivasM
08-01-2001, 07:13 AM
miritika
DEFERRED
indicates that the conditions specified by the deferrable constraint are checked when the transaction is committed.
INITIALLY DEFERRED DEFERRABLE tells Oracle to do deferred constraint checking
Hope this helps u.
08-02-2001, 08:44 AM
gtm
In addtion to what miritika wrote, this type of constraint checking is more useful when two tables are joined with foreign key relationship (parent-child) and data is entered in both at same time.
Default value of DEFERRABLE constraint is INITIALLY IMMEDIATE.