Exam Code/Number: | 1Z0-050Join the discussion |
Exam Name: | Oracle Database 11g: New Features for Administrators |
Certification: | Oracle |
Question Number: | 183 |
Publish Date: | Sep 25, 2025 |
Rating
100%
|
Which three statements correctly describe the features of the I/O calibration process? (Choose three.)
In your database, the RESULT_CACHE_MODE parameter has been set to MANUAL in the initialization parameter file.
You issued the following command:
SQL>SELECT /*+ RESULT_CACHE 7 sale_categoiy, sum(sale_amt)
FROM sales
GROUP BY sale_categoiy;
Where would the result of this query be stored?
Evaluate the following code:
SQL>VARIABLE task_name VARCHAR2(255);
SQL>VARIABLE sql_stmt VARCHAR2(4000);
SQL>BEGIN
:sql_stmt := 'SELECT COUNTO FROM customers
WHERE cust_state_province ="CA"; :task_name := 'MY_QUICKTUNE_TASK';
DBMS_ADVISOR .QUICK_TUNE(DBMS_ADVISOR .SQLACCESS_ADVISOR,
:task_name, :sql_stmt);
END;
What is the outcome of this block of code?
Which of the following information will be gathered by the SQL Test Case Builder for the problems pertaining to SQL-related problems? (Choose all that apply.)
You plan to control the sessions performing a huge number of I/O operations. Your requirement is to kill the session when it exceeds a specified number of l/Os. Which statement describes a solution to the above?