READ Free Dumps For Oracle- 1z0-007
Question ID 1740 | You need to change the definition of an existing table. The COMMERCIALS table needs its DESCRIPTION column changed to hold varying length characters up to 1000 bytes. The column can currently hold 500 bytes per value. The table contains 20000 rows. Which statement is valid? |
Option A | A. ALTER TABLE commercials MODIFY (description CHAR2(1000)); |
Option B | B. You cannot increase the size of a column if the table has rows. |
Option C | C. ALTER TABLE commercials |
Option D | D. ALTER TABLE commercials CHANGE (description CHAR2(1000)); |
Option E | E. ALTER TABLE commercials |
Correct Answer | E |
Question ID 1741 | Click the Exhibit button to examine the structure of the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. |
Option A | |
Option B | B. SELECT last_name, department_id, department_name, city |
Option C | C. SELECT e.last_name, d.department_id, d.department_name, l.city |
Option D | D. SELECT e.last_name, d.department_id, |
Correct Answer | C |