FORMATIVE 4 Flashcards
The implementation (i.e., the detailed code) of a procedure or function that is declared in a (PACKAGE SPECIFICATION) is done in the package body.
True or False
True
The (PL/SQL PACKAGES) are containers that enable you to group together related PL/SQL subprograms, variables, cursors, and exceptions.
True or False
True
The OR REPLACE options (DROP) and re-creates the package specification.
True or False
True
The package specification can exist without the body, but the body cannot exist without the specification.
True or False
True
The package specification is the interface to your applications that declares the constructs (procedures, functions, variables, and so on) which are visible to the calling environment.
True or False
True
The USER_TRIGGERS is used to view the detailed code and status of the trigger in data dictionary.
True or False
True
Database triggers are created and stored in the database just like PL/SQL procedures, functions, and packages.
True or False
True
Which statement is used to enable a database trigger?
ALTER TABLE trigger_name enable
UPDATE TRIGGER trigger_name enable
ALTER TRIGGER trigger_name enable
ALTER TABLE TRIGGER trigger_name enable
ALTER TRIGGER trigger_name enable
To create triggers in other user’s schemas, you need to the __________ privilege.
CREATE ALTER TRIGGER
CREATE ANY TRIGGER
CREATE ALL TRIGGER
CREATE TRIGGER
CREATE ANY TRIGGER
Database triggers execute automatically whenever a data event such as _______ occurs.
DML
DDL, TCL
DML, TCL
DML, DDL
DML, DDL
You specify a row trigger using (FOR EACH ROW) clause.
True or False
True
A (ROW TRIGGER) fires once for each row affected by the triggering DML statement, either just BEFORE the row is processed or just AFTER.
True or False
True
Event determines which DML operation causes the trigger to fire. Values are DELETE, UPDATE [OF column], and (DELETE).
True or False
True
The conditional predicates are: (INSERTING), DELETING, UPDATING.
True or False
True
A statement-level trigger fires once for each row affected by the triggering DML statement, either just BEFORE the row is processed or just AFTER.
True or False
False
The following determines when a DML trigger will execute: BEFORE, AFTER, INSTEAD.
True or False
False
TCL statement is allowed in triggers.
True or False
False
The ON DATABASE fires the trigger only for your own sessions.
True or False
False
The database event triggers are fired by non-SQL events in the database.
True or False
True
The _______ is a statement is used to invoke procedure in a trigger.
PERFORM
CALL
EXECUTE
DO
CALL
The EXECUTE is a statement is used to invoke procedure in a trigger.
True or False
False
A ON SCHEMA fires the trigger for DDL on all schemas in the database.
True or False
False
The ON SCHEMA fires the trigger only for _______ sessions.
All the options
OWN
OWN, OTHER
OTHER
OWN
Which DDL statements cause a DDL trigger to fire?
ALTER, DROP
CREATE, ALTER, DROP
CREATE, DROP
CREATE, ALTER
CREATE, ALTER
The ____ are fired by non-SQL events in the database.
Event Trigger
Application Trigger
Database Event Trigger
Data Event Trigger
Database Event Trigger
The _____ fires the trigger only for your own sessions.
ON SCHEMA
ON DATABASE
ONE SCHEMA
Which trigger is applicable in the following scenario:
The DBA starts up, or shuts down, the database.
DML Trigger
Database Trigger
Database Event Trigger
DDL Trigger
Database Event Trigger
Package construct (variable, procedure, function, and so on) that can be seen and executed from (OUTSIDE) the package are considered public.
True or False
True
Encapsulation refers to a two-part structure in which the detailed (PACKAGE BODY) code is invisible to the calling environment, which can only see the specification. If changes to the code are needed, the body can be edited and recompiled without having to edit or recompile the specification.
True or False
True
Variables declared in the package specification are initialized to NULL by default.
True or False
True
The OR REPLACE option overwrite an existing package body.
True or False
True
Triggers can either be row-level or column level.
True or False
False
You can use triggers to generate derived column values _____.
IMPLICITLY
AUTOMATICALLY
EXPLICITLY
MANUALLY
AUTOMATICALLY
The (AFTER) trigger timing executes the trigger body after the triggering DML event on the table.
True or False
True
The (STATEMENT) trigger is the default type of DML trigger.
True or False
True
The (BEFORE) trigger timing executes the trigger body before theh triggering DML event on a table.
True or False
True
A (DML) trigger is a trigger that is automatically fired (executed) whenever an SQL DML statement (INSERT, UPDATE, or DELETE) is executed.
True or False
True
The row trigger is the default type of DML trigger.
True or False
False
A DML trigger is a database trigger.
True or False
True
A MUTATE table is an object that is currently being modified by a DML statement.
True or False
False
A statement trigger cannot SELECT from a mutating table.
True or False
False
The ________ are fired by non-SQL events in the database.
Database event trigger
Data event trigger
Application Trigger
Event trigger
Database event trigger
A row-level trigger must not query or modify a mutating table.
True or False
True
The ON SCHEMA cannot be used with _____ events..
Before and after
Login and logout
Shutdown and startup
DML and DDL
Shutdown and startup
The (OR REPLACE) option drops and re-crates the package specification.
True
False
True
The package body contains the executable code of the (SUBPROGRAMS) which were declared in the package specification. It may also contain its own variable declarations.
True
False
True
A package is considered as a database Object.
True
False
True
Since triggers are never explicitly invoked, they cannot receive parameters.
True
False
True
One of the differences between triggers and stored procedure is that, TCL statements are allowed in triggers which are not allowed in the stored procedures.
True
False
False
A user connecting to a schema or database is a _____ event.
DATABASE
SYSTEM
SCHEMA
DATA
SYSTEM
Which will not cause a trigger to fire?
DML
operations on a vew
Not in the options
CREATE AND ALTER statement
DML operatinos on a table
DML operations on a view
Which will view the detailed code and status of the trigger in data dictionary?
All the options
USER_OBJECTS
USER_TRIGGERS
USER_ERRORS
USER_TRIGGERS
The following determines when a DML trigger will execute: BEFORE, AFTER, (ROW).
True
False
True
Event determines which DML operation causes the trigger to fire. Values are INSERT, UPDATE [OF column], and SELECT.
True
False
True
The given trigger header below contains no error.
CREATE OR REPLACE TRIGGER emp_del_trigg AFTER DELETE ON employees
BEGIN <assume valid PL/SQL statements here> END;
True
False
True
The PREDICATE keywords are automatically declared Boolean variables which are set to TRUE or FALSE by the Oracle server. These keywords maybe used in the trigger body instead of UPDATE, INSERT, DELETE.
True
False
False
Exception section is not allowed in triggers.
True
False
False
In creating trigger you need to consider the timing and event.
True
False
True
A ________ fires the trigger for DDL on all schemas in the database.
ON DATABASE
ON SCHEMA
ON DATABASE
A MUTE table is an object that is currently being modified by a DML statement
True
False
False
A MUTATING table is an object that is currently being modified by a DML statement.
True
False
True
The ______ are fired by non-SQL events in the database.
Event trigger
Application Trigger
Data Event Trigger
Database Event Trigger
Database Event Trigger
The ______ cannot be used with SHUTDOWN and STARTUP events.
ON SCHEMA
ON DATABASE
ON SCHEMA
What is missing in the given construct in order to remove an entire package?
DROP (PACKAGE) PACKAGE_NAME;
True
False
True
Inheritance refers to a two-part structure in which the detailed package body code is invisible to the calling environment, which can only see the. If changes to the code are needed, the body can be edited and recompiled without having to edit or recompile the specification.
True
False
False
Triggers like subprograms may or may not have parameters.
True
False
False
TCL are allowed in triggers.
True
False
False
Trigger executes ________ whenever the associated action occurs.
Explicity
Implicitly
Implicitly
Since triggers are never explicitly invoked, they cannot receive _____.
ACTUAL PARAMETER
All the options
FORMAL PARAMETER
PARAMETER
PARAMETER
The (TRIGGER) keywords are automatically declared Boolean variables which are set to TRUE or FALSE by the Oracle server. These keywords maybe used in the trigger body instead of UPDATE, INSERT, DELETE.
True
False
True
The (STATEMENT) trigger fires only once for each execution of the triggering statment (even if no rows are affected).
True
False
True
TCL statement is allowed in triggers
True
False
False
DML Trigger is classified in two ways: when they execute, how they execute.
True
False
False
DDL Triggers can either be ON DATABASE or ON SCHEMA.
True
False
True
A ______ triggers execute whenever a particular event occurs within an application.
APPLICATION
DATA
DATABASE
SYSTEM
APPLICATION
DML Trigger is classified in two ways: when they execute, how many times they execute.
True
False
True
DML Triggers can either be ON DATABASE or ON SCHEMA.
True
False
False
The code below will:
CREATE OR REPLACE TRIGGER log_create_trigg
AFTER CREATE ON SCHEMA
BEGIN
INSERT INTO log_table VALUES (USER, SYSDATE);
END;
Fires the trigger only for DDL on objects in your own schema.
Fires the trigger for DDL on all schemas in the database.
The trigger fires whenever any type of object is created in your schema.
Operation is not allowed because created object is not specified.
The trigger fires whenever any type of object is created in your schema.
You cannot create a ______ trigger that refers to a specific database object.
DDL
DML
DDL
Using the package name after the END keyword is optional.
True
False
True
All constructs delcared in the package specification are automatically private constructs.
True
False
False
DBA shutting down the database is a ______ event.
DATABASE
DATA
SYSTEM
APPLICATION
SYSTEM
The ____ allow specified actions to be performed automatically within the database, without having to write extra application code.
PACKAGE
TRIGGER
EXCEPTION HANDLER
SUBPROGRAM
TRIGGER
A row trigger may SELECT from a mutating table.
True
False
False