Oracle 1Z0-047 - Questions & Answers
Free preview · every answer includes a full explanation
Product page: https://prepkeys.com/1z0-047.html
Which three possible values can be set for the TIME_ZONE session parameter by using the ALTER SESSION command? (Choose three.)
EMPDET is an external table containing the columns EMPNO and ENAME.
Which command would work in relation to the EMPDET table?
Which three tasks can be performed using regular expression support in Oracle Database 10g? (Choose three.)
Which three statements are true regarding single-row functions? (Choose three.)
View the Exhibit and examine the structure of the ORDERS and ORDERJTEMS tables.
Evaluate the following SQL statement:
SELECT oi.order_id, product_jd, order_date
FROM order_items oi JOIN orders o USING(order_id);
Which statement is true regarding the execution of this SQL statement?

Which two statements are true regarding the execution of the correlated subqueries? (Choose two.)
Evaluate the CREATE TABLE statement:
CREATE TABLE products
(product_id NUMBER(6) CONSTRAINT prod_id_pk PRIMARY KEY, product_name VARCHAR2(15));
Which statement is true regarding the PROD_ID_PK constraint?
View the Exhibit and examine the data in the PRODUCT INFORMATION table.

Which two tasks would require subqueries? (Choose two.)
Which statement best describes the GROUPING function?
Evaluate the following statement: INSERT ALL WHEN order_total < 10000 THEN
INTO small_orders
WHEN order_total > 10000 AND order_total < 20000 THEN
INTO medium_orders
WHEN order_total > 2000000 THEN
INTO large_orders
SELECT order_id, order_total, customer_id
FROM orders;
Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?