View Exhibit1 and examine the structure of the employees table.
View Exhibit2 and examine the code.
What is the outcome when the code is executed?
The STRING_TAB table has the following structure:
View the Exhibit and examine the code.
What is the outcome on execution?
/temp/my_files is an existing folder in the server, facultylist.txt is an existing text file in this folder
Examine the following commands that are executed by the DBA:
SQL>CREATE DIRECTION my_dir AS ‘ /temp/my_files’:
SQL>GRANT READ ON DIRECTORY my_dir To pubiic:
View the Exhibit and examine the procedure created by user SCOTT to read the list of faculty names from the text file.
SCOTT executes the procedure as follows:
SQL>SET SERVEROUTPUT ON
SQL>EXEC read_file (‘MY_DIR’, FACULTYLIST.TXT’)
What is the outcome?
Examine the following command:
SQL>ALTER SESSION
SET plsql_warnings *
'enable: severe',
'enable: performance',
'ERROR: 05003';
What is the implication of the above command?
View the Exhibit and examine the package code created by SCOTT. The execute privilege on this package is granted to green.
Examine the following sequence of commands issued by SCOTT:
What is the outcome?
View the Exhibit to examine the PL/SQL block.
Which statement is true about the execution of the PL/SQL block?
Examine the following PL/SQL code:
The server output is on for the session. Which statement is true about the execution of the code?
View the Exhibit and examine the blocks of code that you plan to execute.
Which statement is true about the blocks of code?
Examine the following block of code:
Which two statements are correct about the code above? (Choose two.)
Which statements are true about PL/SQL procedures? (Choose all that apply.)
You want to create a trigger that fires whenever rows are deleted from the customer table and that displays the number of rows remaining in the table.
Which two statements are correct about the trigger to be created for the above requirement? (Choose two.)
View the Exhibit and examine the structure of the customer table.
You create the following trigger to ensure that customers belonging to category "A" or "B" in the customer table can have a credit limit of more than 8000.
What is the outcome?
Which three statements are true about wrapping? (Choose three.)
Examine the following PL/SQL code:
The server output is on for the session. Which statement is true about the execution of the code?
Examine the following code:
The above code generates an error on execution.
What must you do to ensure that the code executes successfully?