Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Test: Quiz: Using the PL/SQL Initialization Parameters Bekijk uw antwoorden, feedback en scores hieronder.

Een asterisk (*) geeft een goed antwoord aan. Section 1 (Beantwoord alle vragen in deze sectie.) 1. When setting PLSQL_OPTIMIZE_LEVEL = 2, the compiled code will remove code and exceptions that can never be executed. True or False? Waar (*) Niet waar Correct 2. To set the PLSQL_CODE_TYPE to its fastest execution speed, which command do you use? ALTER SYSTEM SET PLSQL_CODE_TYPE=NATIVE; ALTER SYSTEM SET PLSQL_CODE_TYPE=2; ALTER SESSION SET PLSQL_CODE_TYPE = NATIVE; (*) ALTER SESSION SET PLSQL_CODE_TYPE = INTERPRETED; ALTER SESSION SET PLSQL_CODE_TYPE = 2; Correct 3. PLSQL_CODE_TYPE determines the type of code for PL/SQL code and for SQL statements, which is what speeds up the execution speed. True or False? Waar Niet waar (*) Correct 4. Which data dictionary view allows you to see the setting for PLSQL_OPTIMIZE_LEVEL? USER_PLSQL_OBJECTS USER_PLSQL_OPTIMIZE USER_PLSQL_OBJECT_SETTINGS (*) USER_OBJECT_SETTINGS USER_PLSQL_CODE_TYPE Correct 5. Which are NOT examples of benefits of using PLSQL_OPTIMIZE_LEVEL. (Choose two) (Kies alle goede antwoorden.) Control what PL/SQL does with useless code. Combining compiled code from one subprogram into another subprogram. Separating compiled code so that separate units may be repeated as needed. (*) Markeren voor nakijken (1) Punten Markeren voor nakijken (1) Punten Markeren voor nakijken (1) Punten Markeren voor nakijken (1) Punten Markeren voor nakijken (1) Punten

Backward compatible with previous versions of the Oracle database. Modify source code to optimize frequently-used elements at the top. (*) Correct 6. What are the valid values for PLSQL_OPTIMIZE_LEVEL in the data dictionary? 0,1,2,3 (*) 0,1,2,3,4 1,2,3 1,2,3,4 Correct Markeren voor nakijken (1) Punten

You might also like