Oracle
1Z0-052 · Question #10
Examine the command that is used to create a table: SQL> CREATE TABLE orders ( oid NUMBER(6) PRIMARY KEY, odate DATE, ccode NUMBER (6), oamt NUMBER(10,2) ) TABLESPACE users; Which two statements are t
Sign in or unlock 1Z0-052 to reveal the answer and full explanation for question #10. The question stem and answer options stay visible for context.
Managing Schema Objects
Question
Examine the command that is used to create a table:
SQL> CREATE TABLE orders ( oid NUMBER(6) PRIMARY KEY, odate DATE, ccode NUMBER (6), oamt NUMBER(10,2) ) TABLESPACE users; Which two statements are true about the effect of the above command? (Choose two.)
Options
- AA CHECK constraint is created on the OID column.
- BA NOT NULL constraint is created on the OID column.
- CThe ORDERS table is the only object created in the USERS tablespace.
- DThe ORDERS table and a unique index are created in the USERS tablespace.
- EThe ORDERS table is created in the USERS tablespace and a unique index is created on the OID
Unlock 1Z0-052 to see the answer
You've previewed enough free 1Z0-052 questions. Unlock 1Z0-052 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#PRIMARY KEY constraint#NOT NULL constraint#unique index#tablespace storage