A. CREATIVE USER susan; B. CREATIVE OR REPLACE USER susan; C. CREATE NEW USER susan DEFAULT D. CREATE USER susan IDENTIFIED BY blue; E. CREATE NEW USER susan IDENTIFIED BY blue; F. CREATE OR REPLACE USER susan IDENTIFIED BY blue;
A. ALTER TABLE commercials MODIFY (description CHAR2(2000)); B. ALTER TABLE commercials CHANGE (description CHAR2(2000)); C. ALTER TABLE commercials CHANGE (description VARCHAR2 (2000)); D. ALTER TABLE commercials MODIFY (description VARCHAR2 (2000)); E. You cannot increase the size of a column if the table has rows.
A. Removes the table B. Removes all rows from a table C. Shortens the table to 10 rows D. Removes all columns from a table E. Removes foreign keys from a table