Which statement describes the effect of the command?

View the Exhibit and examine the user information.
The user has been granted CONNECT and RESOURCE roles and no individual system privileges. The SL_REP user executes this command to create a table:
SQL> CREATE TABLE orders (
oid number(6),
odate date,
ccode number(4),
oamt number(10,2)
) TABLESPACE purchase_space;
The PURCHASE_SPACE tablespace already exists in the database.
Which statement describes the effect of the command?
Exhibit:

View the Exhibit and examine the user information.

The user has been granted CONNECT and RESOURCE roles and no individual system privileges. The SL_REP user executes this command to create a table:
SQL> CREATE TABLE orders (
oid number(6),
odate date,
ccode number(4),
oamt number(10,2)
) TABLESPACE purchase_space;

The PURCHASE_SPACE tablespace already exists in the database.

Which statement describes the effect of the command?

A.
The command executes successfully and creates the table in the USERS tablespace.

B.
The command produces an error because the user does not have quota in the PURCHASE_SPACE tablespace.

C.
The command produces an error because the user does not have the privilege to createthe table.

D.
The command executes successfully and creates the table in the PURCHASE_SPACE tablespace.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Alex Senerini

Alex Senerini

Guys, one doubt.. The question ommits if the user SL_REP has quota on this tablespace PURCHASE_SPACE. In my opnion, considering this information is not declared, this command shold produce an error (because his doesn’t have any quota on this tablespace).

Alex

Alex

In Time… When some user has the RESOURCE role, the user can create a table in any tablespace of database.