For which two constraints,does the oracle server implicitly creates an index ?
-
NOT NULL
-
PRIMARY KEY
-
FOREIGN KEY
-
CHECK
-
UNIQUE
B,E
Correct answer
Explanation
Oracle automatically creates a unique index when you define a PRIMARY KEY or UNIQUE constraint to enforce uniqueness. This index supports quick lookups to check for duplicate values before insert/update operations. NOT NULL and CHECK constraints are validated through column value inspection, while FOREIGN KEY constraints are enforced through referential integrity checks - none of these require automatic indexes.