You may use a ____ declaration to create a type before you know the attributes and/or methods that it will contain.
A: passing type
B: rewind type
C: reverse type
D: forward type
Large objects in Oracle may store up to ____ of binary data.
A: 2GB
B: 4GB
C: 3GB
D: 1GB
A packaged function is only as pure as the initialization section of the ____ package.
A: calling
B: containing
C: named
D: newer
Inside the package body, objects can be referenced ____ the package name.
A: without
B: within
C: name
D: outside
When a stored procedure or function is compiled, all of the Oracle objects that it references are recorded in the ____ dictionary.
A: data
B: user
C: object
D: layered
Which of the following is true regarding the following procedure declaration:
CREATE OR REPLACE PROCEDURE CallMe(
p_ParameterA VARCHAR2,
p_ParameterB NUMBER,
p_ParameterC BOOLEAN,
p_ParameterD DATE) AS
...
v_Variable1 VARCHAR2(10);
v_Variable2 NUMBER(7,6);
v_Variable3 BOOLEAN;
v_Variable4 DATE;
A: p_ParameterA VARCHAR2 is associated with v_Variable1 VARCHAR2
B: too large for pl/sql file
C: variable2 is really not a number
D: variable3 is not boolean
If the arguments to a procedure in both the specification and bode were changed in the body, then the ____ would have to be modified to match.
A: body
B: lower
C: footer
D: header
When a procedure is created a ____ is stored in the data dictionary.
A: name
B: signature
C: order
D: new name
Oracle 8 provides the ____ package that can be used to provide random numbers.
The purity level of ____ for a function indicates that the function does not modify any database tables.
A: WNPS
B: RNPS
C: DNNS
D: WNDS
The ____ parameter of a job definition specifies the first time the job will be run after the submit call.
A: next_date
B: future date
C: open_date
D: after_date
Jobs may be exported and imported.
A: True
B: False
DDL triggers can check the type and name of the object being modified, and can check the userid or username.
A: True
B: False
Which of the following PL/SQL statements will return the major version of the trace.
A: dbms_output.put_line(
'trace major version: ' || v_majorversion);
B: dbms_output.put_line(
'trace major version: ' || v_majorversion1);
C: dbms_output.put_line(
'trace major version: ' || v_majorversion2);
D: dbms_output.put_line(
'trace major version: ' || v_majorversion2);
Which of the following would prompt for an entry by the user in a PL/SQL block?
A: select fn, ln
from students
where &where_clause
B: select fn, ln
from students
where +where_clause
C: select fn, ln
from students
where -where_clause
D: select fn, ln
from students
where mwhere_clause
A ____ operation takes its argument and places it into the buffer for storage.
A: out
B: put
C: in
D: one
The event attribute function of ____ returns the userid of the user that fired the trigger.
The abbreviation for PL/SQL errors always begins with ____.
A: PLS
B: SLP
C: PSL
D: LSP
Which of the following is the proper syntax for declaring a parameter with the 'nocopy' hint?
A: parameter_name[mode]copy datatype
B: parameter_name[mode]status datatype
C: parameter_name[mode]new datatype
D: parameter_name[mode]nocopy datatype
Which of the following is a trace that is present in dbms_trace of 8.1.5?
The ____ layer of the db application controls the work done by the application.
A: object logic
B: application logic
C: user logic
D: system logic
The following is the correct usage of the when statement:
Create or replace trigger checkfile
before insert or update of current_credits on students
for each row
when (new.current_credits > 20)
begin
/body/
end;
A: True
B: False
Each line of the internal buffer in SQL PLUS has a limit of ____ characters.
A: 255
B: 456
C: 233
D: 345
It is legal to use a PL/SQL table inside a package.
A: True
B: False
A trigger may not issue any ____ control statements.
A: strict
B: transactional
C: sensational
D: movies
Exception cannot propagate across remote procedure calls, and therefore a plsql block cannot catch an exception raised by a remote subprogram.
A: True
B: False
The get_version subprogram of dbms_profiler will return the major and minor versions of the profiler package.
If so, I would seriously suggest you look elsewhere for answers, or maybe try studying. This forum does not exist to do homework or answer take-home tests.
Bookmarks