Which three statements are true about the Automatic Diagnostic Repository (ADR)?
Which three statements are true about views in an Oracle database? (Choose three.)
Table EMPLOYEES contains columns including EMPLOYEE_ID, JOB_ID and SALARY.
Only the EMPLOYEE_ID column is indexed.
Rows exist for employees 100 and 200.
Examine this statement:
Which two statements are true? (Choose two.)
Examine the description of the PRODUCT_STATUS table:
The status column contains the values 'in stock' or 'out of stock' for each row.
Which two queries will execute successfully?
Which two statements are true about space-saving features in an Oracle Database? (Choose two.)
Which two statements are true regarding Oracle database space management within blocks managed by Automatic Segment Space Management (ASSM)? (Choose two.)
Examine this SQL statement:
SELECT cust_id, cust_last_name “Last Name”
FROM customers
WHERE country_id = 10
UNION
SELECT cust_id CUST_NO, cust_last_name
FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses, any one of which can complete the query successfully. (Choose three.)
Examine this description of the books table containing 100 rows:
Now examine this sequence of statements Issued In a new session;
Examine this description of the books table containing 100 rows:
Which three statements are true?
The stores table has a column START_DATE of data type DATE, containing the date the row was inserted. You only want to display details of rows where START_DATE is within the last 25 months. Which where clause can be used?
Which two statements are true regarding the UNION and UNION ALL operators? (Choose two.)
In one of your databases, you create a user, HR, and then execute this command:
GRANT CREATE SESSION TO hr WITH ADMIN OPTION;
Which three actions can HR perform? (Choose three.)
The customers table has a cust_last_name column of data type varchar2.
The table has two rows whose "jst_last_name values are Andersen and Ausson.
Which query produces output for cust_last_xame containing Oder for the first row and Aus for the second?
In the SALES database, DEFERRED_SEGMENT_CREATION is TRUE.
Examine this command:
SQL> CREATE TABLE T1(c1 INT PRIMARY KEY, c2 CLOB);
Which segment or segments, if any, are created as a result of executing the command?
Examine the description of the product_details table:
Which two statements are true?