The SALES_Q1 and USERS tablespaces exist in one of your databases
And TEMP is a temporary tablespace.
Segment creation is not deferred.
You execute this command
CREATE USER sales IDENTIFIED BY sales_123
DEFAULT TABLESPACE sales_ql
TEMPORARY TABLESPACE temp
QUOTA 5M ON users;
Which three statements must be true so that the sales user can create tables in SALES_Q1?
A.The sales user must have been granted the CREATE TABLE privilege B.The sales user must have been granted the CREATE SESSION privilege C.The sales user must have a quota on the TEMP tablespace D.The sales user must have a quota on the SALES_Q1 tablespace to hold the initial extents of all正确答案ABD
Tables they plan to create in their schema E.The sales user must have a quota on the sales o1 tablespace to hold all the rows to be inserted
Into any table in their schema F.The sales user must have their quota on the users tablespace removed