The SET CONSTRAINTS statement
sets the UNIQUE, REFERENTIAL or CHECK constraint error checking mode.
Example |
 |
Constraints are deferred so that the insert and update
statements will succeed even though they have unresolved constraint
errors. By the end of the transaction, the constraint errors must
be resolved or the entire transaction is rolled back.
{{SET REFERENTIAL CONSTRAINTS DEFERRED}}
|
A transaction appears here that contains some insert, update,
and delete statements:
INSERT ...
UPDATE ...
DELETE ...
UPDATE ...
UPDATE ...
|
If there are unresolved referential constraints, an error message
appears and constraint checking remains in the deferred mode.
{{SET REFERENTIAL CONSTRAINTS IMMEDIATE}}
|
You can correct the constraint errors so you can successfully COMMIT WORK.
If you do not, the COMMIT WORK will roll back the entire transaction because
of the remaining violations.
Issue error correction statements, here.
Constraint error checking is set to IMMEDIATE by the COMMIT WORK
statement or a ROLLBACK WORK statement.