1z0-071 Exam Question 6

Examine this partial command:
CREATE TABLE cust(
cust_id NUMBER(2),
credit_limit NUMBER(10)
ORGANIZATION EXTERNAL
Which two clauses are required for this command to execute successfully?
  • 1z0-071 Exam Question 7

    When does a transaction complete? (Choose all that apply.)
  • 1z0-071 Exam Question 8

    View the exhibit and examine the data in the PROJ_TASK_DETAILS table. (Choose the best answer.)

    The PROJ_TASK_DETAILS table stores information about project tasks and the relation between them.
    The BASED_ON column indicates dependencies between tasks.
    Some tasks do not depend on the completion of other tasks.
    You must generate a report listing all task IDs, the task ID of any task upon which it depends and the name of the employee in charge of the task upon which it depends.
    Which query would give the required result?
  • 1z0-071 Exam Question 9

    View the exhibit and examine the ORDERStable.

    The ORDERStable contains data and all orders have been assigned a customer ID. Which statement would add a NOTNULLconstraint to the CUSTOMER_IDcolumn?
    ALTER TABLE orders
  • 1z0-071 Exam Question 10

    View the exhibit and examine the structure of ORDERS and CUSTOMERS tables.

    Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600? Assume there exists only one row with CUST_LAST_NAME as Roberts and CREDIT_LIMIT as 600.