Valid 1z0-497 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-497 Exam! ExamDiscuss.com now offer the newest 1z0-497 exam dumps, the ExamDiscuss.com 1z0-497 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-497 dumps with Test Engine here:
Examine the output: SQL> SELECT index_name, status FROM dba_indexes WHEREstatus='UNUSABLE'; INDEX_NAME STATUS --------------------- ----------------- EIND UNUSABLE Which two statements about this index are true?
Correct Answer: A,B
Explanation/Reference: Explanation: * Oracle indexes can go into a UNUSABLE state after maintenance operation on the table or if the index is marked as 'unusable' with an ALTER INDEX command. A direct path load against a table or partition will also leave its indexes unusable. Queries and other operations agains a table with unuable indexes will generate errors: ORA-01502: index 'string.string' or partition of such index is in unusable state * The following SQL will print out a list of alter commands that can be executed to fix unusable indexes: Indexes: SELECT 'alter index '||index_name||' rebuild tablespace '||tablespace_name ||';' FROM dba_indexes WHERE status = 'UNUSABLE';