Oracle Database SQL — Question 112

Which two statements are true about indexes and their administration in an Oracle database? (Choose two.)

Answer options

Correct answer: A, B

Explanation

Option A is correct because creating a primary key constraint can utilize an existing index or create a new one. Option B is also correct as an INVISIBLE index is still maintained by DML operations despite not being used in query plans. Options C, D, and E are incorrect since an index may not always be accessed, a DROP INDEX does not prevent updates, and a column can be part of both unique and non-unique indexes.