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. A role can be given to a maximum of 1000 users. B. A user can have access to a maximum of 10 roles. C. A role can have a maximum of 100 privileges contained in it. D. Privileges are given to a role by using the CREATE ROLE statement. E. A role is a named group of related privileges that can be granted to the user. F. A user can have access to several roles, and several users can be assigned the same role.
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.