Question: 1
Which two partitioned table maintenance operations support asynchronous Global Index Maintenance in Oracle database 12c?
Question: 2
View the Exhibit and examine the structures of the employees and departments tables.
You must update the employees table according to these requirements::
-Update only those employees who work in Boston or Seattle (locations 2900 and 2700).
-Set department_id for these employees to the department id corresponding to London (locationid 2100).
-Set the employees' salary in iocation_id 2100 to 1.1 times the average salary of their department.
-Set the employees' commission In location_id 2100 to 1.5 times the average commission of their department.
You issue this command:
What is the result?
Question: 3
View the Exhibit and examine the data in the employees table.
You want to generate a report showing the total compensation paid to each employee to date.
You issue the following query:
What is the outcome?
Question: 4
Evaluate the following query:
Which is the correct output of the above query?
Question: 5
Examine the commands used to create the DEPARTMENT_DETAILS and the COURSE-DETAILS tables:
SQL> CREATE TABLE DEPARTMfiNT_DTAILS
DEPARTMENT_ID NUMBER PRIMARY KEY ,
DEPARTMEHT_NAME VARCHAR2(50) ,
HOD VARCHAP2(50));
SQL> CREATE TABLE COURSE-DETAILS
(COURSE ID NUMBER PRIMARY KEY ,
COURS_NAME VARCHAR2 (50) ,
DEPARTMEHT_ID NUMBER REFERENCES DEPARTMENT_DETAIL
You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
Which SQL statement must you use?