Definitions for "Database Trigger" Add To Word List
Login or Register  | Word Lists | Search History

a PL/SQL block that can defined to automatically execute for insert, update, and delete statements against a table
Helpful?           0
a predefined event that runs automatically whenever a specified action is performed on a physical file
Helpful?           0
a procedure that is run automatically when an event occurs
Helpful?           0
a procedure written in PL/SQL, Java, or C that will run implicitly when data is modified or when some user or system actions occur
Helpful?           0
a set of synchronous Structured Query Language (SQL) statements that execute automatically when a specific operation, such as changing data in a table, occurs
Helpful?           0
a special kind of PL/SQL anonymous block
Helpful?           0
a SQL statement that is executed when a condition such as a Row insertion, deletion or update is met
Helpful?           0
a stored PL/SQL block associated with a table
Helpful?           0
a stored PL/SQL program unit associated with a specific database table
Helpful?           0
a stored procedure associated with a specific table or view
Helpful?           0
a stored procedure that is fired (implicitly executed) when an INSERT, UPDATE, or DELETE statement is issued against the associated table
Helpful?           0
a stored procedure that Oracle Database invokes ("fires") automatically when certain events occur, for example, when a DML operation modifies a certain table
Helpful?           0
a stored procedure that Oracle invokes ("fires") automatically whenever a given DML operation modifies the trigger's table or schema
Helpful?           0
a stored program associated with a specific table or view
Helpful?           0
a stored subprogram associated with a database table, view, or event
Helpful?           0
A database trigger is procedural code that is automatically executed in response to certain events on a particular table in a database. Triggers can restrict access to specific data, perform logging, or audit data modifications.
Helpful?           0