Which two statements are true about indexes and their administration in an Oracle database? (Choose two.)
Which two statements are true about indexes and their administration in an Oracle database? (Choose two.)
A new index can be created or an existing one reused when a primary key constraint is created, which means a primary key constraint automatically attempts to create an index if one does not already exist. Moreover, an INVISIBLE index is indeed maintained by DML operations on the underlying table. This ensures it stays up to date even though it is not visible to the optimizer. However, a query filtering on an indexed column does not always mean the index will be used; the optimizer evaluates various factors before deciding to use the index. DROP INDEX does not necessarily prevent updates to the table, and a table column can be part of both a unique and a non-unique index.
c. No, that statement is not necessarily true. If a query filters on an indexed column, the optimizer will decide whether or not to use the index based on factors such as the selectivity of the filter and the size of the table. In some cases, a full table scan may be more efficient than using an index.
AB is correct
A: using index clause C: once index created, use is automatic with query
Zouve's comments regarding choice C are absolutely correct. My mistake! AB
AB are correct
https://www.examtopics.com/discussions/oracle/view/9439-exam-1z0-071-topic-1-question-300-discussion/