Database - SQL for Database Construction - Discussion

Discussion Forum : SQL for Database Construction - General Questions (Q.No. 2)
2.
A ________ is a stored program that is attached to a table or a view.
pseudofile
embedded SELECT statement
trigger
None of the above is correct.
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Vinay said:   7 years ago
But that is true only if trigger is defined, isn't it? In the question it is not stated.

Anbu.M said:   8 years ago
Trigger is an action, it will execute automatically when event occurs as well as stored procedure that automatically executes.

Mukesh said:   10 years ago
A trigger is a special kind of stored procedure that automatically executes when an event occurs in the database server. e.g- DML triggers execute when a user tries to modify data through a data manipulation language (DML) event.

Shekhar said:   10 years ago
Trigger is a database object, it will execute automatically when event occurs.

SUDIP said:   1 decade ago
A database trigger is procedural code that is automatically executed in response to certain events on a particular table or view in a database.

Post your comments here:

Your comments will be displayed after verification.