1z0-071 Exam Question 216

Which three statements are true about performing DML operations on a view with no Instead of triggers defined?
  • 1z0-071 Exam Question 217

    Examine the description of the EMPLOYEES table:

    Which two queries return rows for employees whose manager works in a different department?
  • 1z0-071 Exam Question 218

    You have the privileges to create any type of synonym.
    Which stalement will create a synonym called EMP for the HCM.EMPLOYEE_RECORDS table that is accesible to all users?
  • 1z0-071 Exam Question 219

    View the exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTSand TIMEStables.

    The PROD_IDcolumn is the foreign key in the SALEStable, which references the PRODUCTStable.
    Similarly, the CUST_IDand TIME_IDcolumns are also foreign keys in the SALEStable referencing the CUSTOMERSand TIMEStables, respectively.
    Evaluate the following CREATE TABLEcommand:
    CREATE TABLE new_sales (prod_id, cust_id, order_date DEFAULT SYSDATE)
    AS
    SELECT prod_id, cust_id, time_id
    FROM sales;
    Which statement is true regarding the above command?
  • 1z0-071 Exam Question 220

    You need to allow user ANDREW to:
    1. Modify the TITLE and ADDRESS columns of your CUSTOMERS table.
    2. GRANT tha permission to other users.
    Which statement will do this?