Question 321

In your database, you want to ensure that idle sessions that are blocking active are automatically terminated after a specified period of time.
How would you accomplish this?
  • Question 322

    On your Oracle 12c database, you invoked SQL *Loader to load data into the EMPLOYEES table in the HR schema by issuing the following command:
    $> sqlldr hr/hr@pdb table=employees
    Which two statements are true regarding the command? (Choose two.)
  • Question 323

    In your multitenant container database (CDB) containing pluggable database (PDBs), the HR user executes the following commands to create and grant privileges on a procedure:
    CREATE OR REPLACE PROCEDURE create_test_v (v_emp_id NUMBER, v_ename VARCHAR2, v_SALARY NUMBER, v_dept_id NUMBER) BEGIN INSERT INTO hr.test VALUES (V_emp_id, V_ename, V_salary, V_dept_id); END;
    /
    GRANT EXECUTE ON CREATE_TEST TO john, jim, smith, king;
    How can you prevent users having the EXECUTE privilege on the CREATE_TEST procedure from inserting values into tables on which they do not have any privileges?
  • Question 324

    You install "Oracle Grid Infrastructure for a standalone server" on a host on which the ORCL1 and ORCL2 databases
    both have their instances running.
    Which two statements are true?
  • Question 325

    Identify three scenarios in which you would recommend the use of SQL Performance
    Analyzer to analyze impact on the performance of SQL statements.