deferred-foreign-keys

Checking integrity of deferred foreign keys in Oracle

Deferred foreign keys are useful because Oracle checks the integrity of the foreign key constraint only on commit and not after each statement. Although this deferred integrity checking is very useful, sometimes I'd like to check the integrity without executing commit. Is it possible somehow? (Without changing the constraints to non-def...