1Z0-062 · Question #103
You have altered a non-unique index to be invisible to determine if queries execute within an acceptable response time without using this index. Which two are possible if table updates are performed w
The correct answer is A. The index remains invisible. E. The index is updated by the DML on the table.. Unlike unusable indexes, an invisible index is maintained during DML statements. * Oracle 11g allows indexes to be marked as invisible. Invisible indexes are maintained like any other index, but they are ignored by the optimizer unless the OPTIMIZER_USE_INVISIBLE_INDEXES paramete
Question
You have altered a non-unique index to be invisible to determine if queries execute within an acceptable response time without using this index. Which two are possible if table updates are performed which affect the invisible index columns?
Options
- AThe index remains invisible.
- BThe index is not updated by the DML statements on the indexed table.
- CThe index automatically becomes visible in order to have it updated by DML on the table.
- DThe index becomes unusable but the table is updated by the DML.
- EThe index is updated by the DML on the table.
How the community answered
(29 responses)- A93% (27)
- C3% (1)
- D3% (1)
Explanation
Unlike unusable indexes, an invisible index is maintained during DML statements. * Oracle 11g allows indexes to be marked as invisible. Invisible indexes are maintained like any other index, but they are ignored by the optimizer unless the OPTIMIZER_USE_INVISIBLE_INDEXES parameter is set to TRUE at the instance or session level. Indexes can be created as invisible by using the INVISIBLE keyword, and their visibility can be toggled using the ALTER INDEX command.
Topics
Community Discussion
No community discussion yet for this question.