Valid 1z0-071 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-071 Exam! ExamDiscuss.com now offer the newest 1z0-071 exam dumps, the ExamDiscuss.com 1z0-071 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-071 dumps with Test Engine here:
Examine this statement: CREATE TABTE orders (sarial_no NUMBER UNIQUE, order_id NUMBER PRIMARY KEY , order_date DATE NOT NULL, status VARCHAR2 (10) CHECK (status IN ('CREDIT', 'CASH')), product_id NUMBER REFERENCES products (product_id), order_ total NUMBER); On which two columns of the table will an index be created automatically?
Correct Answer: A,E
An index is created automatically on columns that are defined with a UNIQUE constraint and a PRIMARY KEY constraint. A). True. Since the serial_no column is defined with a UNIQUE constraint, Oracle will automatically create an index for this column. E). True. The order_id column is defined with a PRIMARY KEY constraint, and Oracle automatically creates a unique index on the primary key column.