Dont let RI degrade your DB performance
Don't Let Referential Integrity Degrade Your Database Performance Foreign key (FK) constraints without supporting indexes can cause severe performance problems during SQL queries and massive DML (Data Manipulation Language) operations, such as DELETEs or UPDATEs. Use a SQL script to detect unindexed foreign key constraints. by Boris Milrud, Oracle Pro - See more at: http://www.devx.com/getHelpOn/10MinuteSolution/16595#sthash.KTEjQBxn.dpuf O racle databases provide a powerful mechanism for enforcing business rules, called referential integrity (RI), which is implemented either via a declaration of foreign key (FK) constraints ("declarative RI") or via triggers. It is almost impossible to find an Oracle database with no declarative RI implemented. Declarative RI protects the integrity of related data by defining the relation between data in different tables. Relation between two tables is defined using a combination of primary, or unique, key (PK) and FK constr