FA 4 Flashcards
The package specification should contain the subprogram ________ and associated parameters terminated by a semicolon.
NAME
The OR REPLACE options _______ and re-creates the package specification.
DROPS
The implementation (i.e., the detailed code) of a procedure or function that is declared in a ________ is done in the package body.
PACKAGE SPECIFICATION
(T OR F) A package is considered as a database Object.
TRUE
(T OR F) All constructs declared in the package specification are automatically private constructs.
TRUE
(T OR F) Since triggers are never explicitly invoked, they cannot receive parameters.
To create triggers in other user’s schemas, you need the CREATE TRIGGER privilege.
FALSE (CREATE ANY TRIGGER)
A _____ trigger execute automatically whenever a data event or a system event occurs.
DATABASE
The_________ allow specified actions to be performed automatically within the database, without having to write extra application code.
TRIGGER
The ____ trigger timing executes the trigger body after the triggering DML event on a table.
AFTER
The conditional predicates are: _______, DELETING, UPDATING.
INSERTING
The ________trigger is the default type of DML trigger.
STATEMENT TRIGGER
Event determines which DML operation causes the trigger to fire. Values are DELETE, UPDATE [OF column], and ______.
INSERT
The ________ 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.
TRIGGER
(T OR F) 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.
FALSE (ROW TRIGGER)
(T OR F) A DML trigger is a database trigger.
TRUE
(T OR F) A DML trigger may have more than one triggering event.
TRUE
(T OR F) TCL statement is allowed in triggers.
FALSE
(T OR F) The following determines when a DML trigger will execute: BEFORE, AFTER, INSTEAD.
TRUE
(T OR F) DDL Triggers can either be ON DATABASE or ON SCHEMA
TRUE
(T OR F) The EXECUTE is a statement is used to invoke procedure in a trigger.
FALSE
(T OR F) The use INSTEAD OF with Database Event triggers is possible.
TRUE
(T OR F) A ON SCHEMA fires the trigger for DDL on all schemas in the database.
FALSE (ON DATABASE)
(T OR F) You cannot create a DDL trigger that refers to a specific database object.
TRUE
The ______ triggers can either be ON DATABASE or ON SCHEMA.
DML
The __________ cannot be used with SHUTDOWN and STARTUP events.
ON SCHEMA
A ________trigger must not query or modify a mutating table.
STATEMENT-LEVEL
The ______ fires the trigger only for your own sessions.
ON SCHEMA
The _____ are containers that enable you to group together related PL/SQL subprograms, variables, cursors, and exceptions.
PL/SQL PACKAGES
The implementation (i.e., the detailed code) of a procedure or function that is declared in a ________ is done in the package body.
PACKAGE SPECIFICATION
What is missing in the given construct in order to remove an entire package?
DROP ________ PACKAGE_NAME;
PACKAGE
(T OR F) The OR REPLACE option deletes an existing package body.
FALSE
(T OR F) Variables declared in the package specification are initialized to NULL by default
TRUE
(T OR F) Triggers can either be row-level or statement-level.
TRUE
(T OR F) To create triggers in other users’ schemas, you need the CREATE ANY TRIGGER privilege
TRUE
To create triggers in other user’s schemas, you need to the __________ privilege.
CREATE ANY TRIGGER
Which will view the detailed code and status of the trigger in data dictionary?
USER_TRIGGERS
Which statement is used to enable a database trigger?
ALTER TRIGGER trigger_name enable
A ________ fires once for each row affected by the triggering DML statement, either just BEFORE the row is processed or just AFTER.
ROW TRIGGER
The following determines when a DML trigger will execute: BEFORE, AFTER, ________.
INSTEAD OF
(T OR F) The Conditional Predicates 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
(T OR F) Exception section is not allowed in triggers.
FALSE
(T OR F) 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.
FALSE
(T OR F) DML Trigger is classified in two ways: when they execute, how they execute.
TRUE
(T OR F) 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.
FALSE
(T OR F) DML Triggers can either be ON DATABASE or ON SCHEMA.
FALSE
The ______ triggers can either be ON DATABASE or ON SCHEMA.E
DDL
(T OR F) A statement trigger cannot SELECT from a mutating table.
FALSE
(T OR F) The ON SCHEMA cannot be used with SHUTDOWN and STARTUP events.
TRUE
Database Event triggers can be created ON DATABASE or ON SCHEMA, except that ON SCHEMA cannot be used with ______
SHUTDOWN and STARTUP events.
(T OR F) A MUTATING table is an object that is currently being modified by a DML statement.
FALSE
(T OR F) The database event triggers are fired by non-SQL events in the database.
TRUE
(T OR F) Database Event triggers
The DBA starts up, or shuts down, the database
TRUE
The _________ are fired by non-SQL events in the database.
Database event trigger
A ________ fires the trigger for DDL on all schemas in the database.
ON DATABASE
The _______ is a statement is used to invoke procedure in a trigger.
CALL
The ON SCHEMA fires the trigger only for _______ sessions.
OWN
The package specification should contain the subprogram ________ and associated parameters terminated by a semicolon
NAME
Every subprogram declared in the package specification must also be included in the
_____.
PACKAGE BODY
The ________ declared in the package specification are initialized to null by default.
VARIABLES
Database triggers execute automatically whenever a data event such as _______ occurs
DML, DDL
You specify a row trigger using __________clause.
FOR EACH ROW
The ______ triggers can either be ON DATABASE or ON SCHEMA
DDL
The package body contains the executable code of the _________ which were declared in the package specification. It may also contain its own variable declarations.
SUBPROGRAMS
The ____ option drops and re-creates the package specification.
OR REPLACE
The ____ trigger timing executes the trigger body before the triggering DML event on a table.
BEFORE
In creating trigger you need to consider the timing and _______
EVENT
A ________ fires the trigger for DDL on all schemas in the database.
ON DATABASE
You can use triggers to generate derived column values _________.
AUTOMATICALLY
Which DDL statements cause a DDL trigger to fire?
CREATE, ALTER, DROP
Trigger executes ________ whenever the associated action occurs
IMPLICITLY
Trigger executes ________ whenever the associated action occurs.
IMPLICITLY
(T OR F) A DML trigger is a database trigger.
TRUE
(T OR F) The trigger body is written similar to anonymous block
TRUE
(T OR F) Trigger executes explicitly whenever the associated action occurs.
TRUE
(T OR F) To create triggers in other user’s schemas, you need the CREATE ANY TRIGGER privilege.
TRUE
(T OR F) A row-level trigger must not query or modify a mutating table
TRUE
(T OR F) The ON SCHEMA cannot be used with SHUTDOWN and STARTUP events.
TRUE
(T OR F) 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
(T OR F) The Database Event Trigger are fired by non-SQL events in the database.
TRUE
(T OR F) You cannot create a DDL trigger that refers to a specific database object
TRUE
(T OR F) Package specification is a container that enable you to group together related PL/SQL subprograms, variables, cursors, and exceptions.
TRUE
(T OR F) 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.
FALSE
(T OR F) DML Trigger is classified in two ways: when they execute, how they execute.
FALSE
(T OR F) A MUTATE table is an object that is currently being modified by a DML statement.
FALSE
(T OR F) A MUTATE table is an object that is currently being modified by a DML statement.
FALSE
(T OR F) The use INSTEAD OF with Database Event triggers is possible.
FALSE
(T OR F) The CALL is a statement is used to invoke procedure in a trigger.
FALSE
(T OR F) Using the package name after the END keyword is mandatory.
FALSE
(T OR F) The Conditional Predicates 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.
FALSE
(T OR F) 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.
FALSE
(T OR F) You need to recompile the package specification whenever the body of the subprograms that are in the package body changes.
FALSE
(T OR F) All constructs declared in the package specification are automatically private constructs.
FALSE
(T OR F) TCL statement is allowed in triggers.
FALSE
(T OR F) The row trigger is the default type of DML trigger.
FALSE
Which trigger is applicable in the following scenario:
The DBA starts up, or shuts down, the database.
DATABASE EVENT TRIGGER
What will cause an error in the given trigger declaration?
CREATE OR REPLACE TRIGGER log_salchange_trigg
AFTER UPDATE OF salary ON employees IS
DECLARE
VDATE NUMBER := SYSDATE;
BEGIN
INSERT INTO log_table (user_id, logon_date)
VALUES (USER, VDATE); END;
VDATE, SYSDATE
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 for DDL on all schemas in the database.