1z0-071 Exam Question 16

MANAGER is an existing role with no privileges or roles.
EMP is an existing role containing the CREATE TABLE privilege.
EMPLOYEES is an existing table in the HR schema.
Which two commands execute successfully?
  • 1z0-071 Exam Question 17

    Evaluate the following two queries:
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit IN (1000, 2000, 3000);
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit = 1000 or cust_credit_limit = 2000 or
    cust_credit_limit = 3000
    Which statement is true regarding the above two queries?
  • 1z0-071 Exam Question 18

    Examine these SQL statements that are executed in the given order:

    What will be the status of the foreign key EMP_MGR_FK?
  • 1z0-071 Exam Question 19

    The BOOKS_TRANSACTIONStable exists in your database.
    Examine the SQL statement:
    SQL>SELECT * FROM books_transactionsORDER BY 3;
    What is the outcome on execution?
  • 1z0-071 Exam Question 20

    View the Exhibit and examine the structure of ORDERS and ORDER_ITEMS tables.
    ORDER_ID is the primary key in the ORDERS table and the foreign key of the ORDER_ITEMS table, whose constraint is defined with the ON DELETE CASCADE option.
    Which DELETE statement would execute successfully?