Oracle Database SQL — Question 239

Which two statements are true regarding indexes? (Choose two.)

Answer options

Correct answer: A, B

Explanation

Answer A is correct because updates to a table necessitate changes to its associated indexes to maintain data integrity. Answer B is also correct as certain updates may not affect any indexes, particularly if the indexed columns are not modified. The other options are incorrect because a UNIQUE index cannot be altered to be non-unique (C), indexes are not permanently dropped when a table is moved to the RECYCLE BIN (D), and indexes can be created by different users on the same table (E).