Which two statements are true about the effect of the above command?

Examine the following command that is used to create a table:
Which two statements are true about the effect of the above command? (Choose two.)

Examine the following command that is used to create a table:
Which two statements are true about the effect of the above command? (Choose two.)

A.
A CHECK constraint is created on the OID column

B.
A NOT NULL constraint is created on the OID column

C.
The ORDERS table is the only object created in the USERS tablespace

D.
The ORDERS table and a unique index are created in the USERS tablespace

E.
The ORDERS table is created in the USERS tablepsace and a unique index is created on the OID
column in the SYSTEM tablespace



Leave a Reply 6

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


Prince

Prince

Exhibit missing

Léon

Léon

See question 23 !

maci

maci

SQL> CREATE TABLE orders(kid NUMBER(6), PRIMARY KEY, odate DATE, ccode NUMBER(6), oat NUMBER(10,2)) TABLESPACE users;

maci

maci

Sorry, there is a typo in the SQL, it should be:

SQL> CREATE TABLE orders(oid NUMBER(6) PRIMARY KEY, odate DATE, ccode NUMBER(6), oat NUMBER(10,2)) TABLESPACE users;