Question 226

Which two statements are true regarding constraints? (Choose two.)
  • Question 227

    Examine the business rule:
    Each student can work on multiple projects and each project can have multiple students.
    You need to design an Entity Relationship Model (ERD) for optimal data storage and allow for generating reports in this format:
    STUDENT_ID FIRST_NAME LAST_NAME PROJECT_ID PROJECT_NAME PROJECT_TASK
    Which two statements are true in this scenario? (Choose two.)
  • Question 228

    You issue the following command to drop the PRODUCTStable:
    SQL > DROP TABLE products;
    Which three statements are true about the implication of this command? (Choose three.)
  • Question 229

    View the Exhibit and examine the structure of the SALES and PRODUCTS tables. (Choose two.)

    In the SALES table, PROD_ID is the foreign key referencing PROD_ID in the PRODUCTS table. You must list each product ID and the number of times it has been sold.
    Examine this query which is missing a JOIN operator:
    SQL > SELECT p.prod_id, count(s.prod_id)
    FROM products p ______________ sales s
    ON p.prod_id = s.prod_id
    GROUP BY p.prod_id;
    Which two JOIN operations can be used to obtain the required output?
  • Question 230

    Which two partitioned table maintenance operations support asynchronous Global Index Maintenance in Oracle database 12c?