1z0-071 Exam Question 46

In which three situations does a transaction complete? (Choose three.)
  • 1z0-071 Exam Question 47

    Which three are key components of an Entity Relationship Model? (Choose three.)
  • 1z0-071 Exam Question 48

    The PRODUCT_INFORMATIONtable has a UNIT_PRICEcolumn of data type NUMBER (8, 2).
    Evaluate this SQL statement:
    SELECT TO_CHAR(unit_price, '$9,999') FROM product_information;
    Which two statements are true about the output? (Choose two.)
  • 1z0-071 Exam Question 49

    Evaluate the following SQL commands:

    The command to create a table fails. Identify the reason for the SQL statement failure.
  • 1z0-071 Exam Question 50

    View the exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTS and TIMES tables.

    The PROD_ID column is the foreign key in the SALES table, which references the PRODUCTS table.
    Similarly, the CUST_ID and TIME_ID columns are also foreign keys in the SALES table referencing the CUSTOMERS and TIMES tables, respectively.
    Evaluate the following CREATE TABLE command:
    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?