In your database, USERS is the default permanent tablespace.Examine the commands and their outcome:
SQL> CREATE USER user02 identified by us123 QUOTA 10M ON users;
User created.
SQL> GRANT create session, sysdba To user02;
Grant succeeded.
You plan to execute the commands:
SQL> CONN user02/us123 AS SYSDBA
SQL> CREATE TABLE mytab (id number, 1name varchar2 (20) ); Which two statements are true?