READ Free Dumps For Oracle- 1z0-001
Question ID 1633 | You have decided to disable the PRIMARY KEY constraint on the empid column and the CHECK constraint on the job column. |
Option A | A. You need to recreate the constraints once they are disabled. |
Option B | B. The indexes on both the columns with the PRIMARY KEY constraint and the CHECK constraint are automatically re-created. |
Option C | C. Any existing rows that do not confirm with the constraints are automatically deleted. |
Option D | D. All the existing column values are verified to confirm with the constraints and an error message is generated if any existing values do not confirm. |
Option E | E. Only the future values are verified to confirm with the constraints, leaving the existing values unchecked. |
Correct Answer | D |
Question ID 1634 | The structure of the DEPT table is as follows: DEPTNO NOT NULL NUMBER(2) DNAME VARCHAR2(14) |
Option A | A. SELECT * |
Option B | B. You can not retrieve the entire row using the DEPT_REC variable declared in the code. |
Option C | C. SELECT deptno, dname, loc INTO dept_rec |
Option D | D. SELECT * INTO dept_rec |
Correct Answer | B |