exam questions

Exam 1z0-082 All Questions

View all questions & answers for the 1z0-082 exam

Exam 1z0-082 topic 1 question 121 discussion

Actual exam question from Oracle's 1z0-082
Question #: 121
Topic #: 1
[All 1z0-082 Questions]

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

  • A. An index can be created as part of a CREATE TABLE statement.
  • B. If a query filters on an indexed column, then it will always be used during execution of the query.
  • C. A descending index is a type of function-based index.
  • D. A DROP INDEX statement always prevents updates to the table during the drop operation.
  • E. A UNIQUE and non-unique index can be created on the same table column.
  • F. An INVINSIBLE INDEX is not maintained when Data Manipulation Language (DML) is performed on its underlying table.
Show Suggested Answer Hide Answer
Suggested Answer: ACE 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Oracle2020
9 months, 3 weeks ago
ABE IS CORRECT A-TRUE B-TRUE C-FALSE D-FALSE: The database automatically maintains indexes when you insert, update, and delete rows of the associated table. If you drop an index, all applications continue to work. However, access to previously indexed data might be slower. E-TRUE F-FALSE:Unlike unusable indexes, an invisible index is maintained during DML statements
upvoted 1 times
Oracle2020
9 months, 3 weeks ago
C-FALSE: Function-based indexes: contain the precomputed value of a function/expression
upvoted 1 times
...
...
Sajib_Arafat
1 year, 3 months ago
SQL> create index a1 on x1(b1); Index created. SQL> create unique index a2 on x1(b1); create unique index a2 on x1(b1) * ERROR at line 1: ORA-01408: such column list already indexed SQL>
upvoted 1 times
sobrinho
9 months, 1 week ago
C is correct: SQL> create table t1 (col1 number, col2 varchar2(10), col3 varchar2(10)); Table created. Elapsed: 00:00:00.03 SQL> create unique index ix1 on t1(col1); Index created. Elapsed: 00:00:00.02 SQL> create index ix2 on t1(col1, col2); Index created. Elapsed: 00:00:00.01 SQL> create unique index ix3 on t1(col1, col2, col3); Index created. Elapsed: 00:00:00.02 SQL>
upvoted 1 times
sobrinho
9 months, 1 week ago
TYPO: I mean option E.
upvoted 1 times
freefish
5 months, 1 week ago
be created on the "same table column" ?
upvoted 1 times
...
...
...
...
zouve
1 year, 5 months ago
Selected Answer: ACE
ACE for me
upvoted 1 times
...
piontk
1 year, 5 months ago
Selected Answer: ACE
A- CREATE TABLE Books( ID NUMBER PRIMARY KEY USING INDEX (CREATE INDEX idx_custom_books_id ON books (ID)), Title VARCHAR2(100) NOT NULL, Author VARCHAR2(100) NOT NULL, PublishYear NUMBER NOT NULL ); C- "Oracle Database treats descending indexes as if they were function-based indexes" https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/CREATE-INDEX.html#GUID-1F89BBC0-825F-4215-AF71-7588E31D8BFE__GUID-92F4F0FB-499A-4ED7-8630-B219F8A50B90 E- "When you have multiple indexes on the same set of columns, only one of these indexes can be visible at a time, and any other indexes must be invisible." "You can create multiple indexes on the same set of columns when at least one of the following index characteristics is different: The indexes have different uniqueness properties. You can create both a unique and a non-unique index on the same set of columns." https://docs.oracle.com/en/database/oracle/oracle-database/19/admin/managing-indexes.html#GUID-B4B30CF4-2B95-44D6-8596-EC2A378251EF Correct is ACE, according the above evidences.
upvoted 2 times
shotcom
1 year, 4 months ago
you can create both unique and non unique on the same set of columns not on one column option E is saying on the same table column making it wrong
upvoted 1 times
...
...
auwia
1 year, 6 months ago
Selected Answer: ABC
Correct answer in my opinion.
upvoted 1 times
...
auwia
1 year, 6 months ago
E is false: -- Create table CREATE TABLE test_table ( id NUMBER, value VARCHAR2(255) ); -- Populate the table INSERT INTO test_table (id, value) VALUES (1, 'One'); INSERT INTO test_table (id, value) VALUES (2, 'Two'); COMMIT; -- Create a unique index CREATE UNIQUE INDEX test_table_uniq_idx ON test_table(id); -- Create a non-unique index CREATE INDEX test_table_idx ON test_table(id); ORA-01408: such column list already indexed
upvoted 1 times
auwia
1 year, 6 months ago
Correct answer for me are: A, B, and C; conclusion got by exclusion and priority: D, E, and F are wrong with high priority for me! :-)
upvoted 1 times
...
...
ivanadj
1 year, 11 months ago
Selected Answer: ACE
https://www.examtopics.com/discussions/oracle/view/9439-exam-1z0-071-topic-1-question-300-discussion/
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago