DBMS
Programming and Technical
Programming
Technical
What are triggers?
Read Solution (Total 3)
-
- A database trigger is procedural code that is automatically executed in response to certain events on a particular table or view in a database. The trigger is mostly used for maintaining the integrity of the information on the database. For example, when a new record (representing a new worker) is added to the employees table, new records should also be created in the tables of the taxes, vacations and salaries.
- 11 years agoHelpfull: Yes(1) No(0)
- database triggers are stored procedure.That gets executed automatically when some events occurs
- 10 years agoHelpfull: Yes(1) No(0)
- Triggers are stored programs, which are automatically executed or fired when some events occur. Triggers are, in fact, written to be executed in response to any of the following events
- 8 years agoHelpfull: Yes(0) No(0)
DBMS Other Question