Database - SQL for Database Construction - Discussion

Discussion Forum : SQL for Database Construction - True or False (Q.No. 14)
14.
A trigger is a stored program that is attached to a database.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
3 comments Page 1 of 1.

Lakshmikanth Rajamani said:   9 years ago
A database trigger is a 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.

Nainy said:   1 decade ago
A trigger is a stored program that is attached to table or view in the database.

Javeed said:   1 decade ago
A trigger is a procedure that is automatically invoked by the DBMS in response to specified changes to the database, and is typically specified by the DBA.

Post your comments here:

Your comments will be displayed after verification.