wat is mean by trigger?.......normally wat use......when
trigger used in sql...........
plz cleary say with example.......
Answer Posted / vimal p.s
A trigger is a SQL procedure that initiates an action when
an event (INSERT, DELETE or UPDATE) occurs. Triggers are
stored in and managed by the DBMS.Triggers are used to
maintain the referential integrity of data by changing the
data in a systematic fashion. A trigger cannot be called or
executed; the DBMS automatically fires the trigger as a
result of a data modification to the associated table.
Triggers can be viewed as similar to stored procedures in
that both consist of procedural logic that is stored at the
database level. Stored procedures, however, are not event-
drive and are not attached to a specific table as triggers
are. Stored procedures are explicitly executed by invoking
a CALL to the procedure while triggers are implicitly
executed. In addition, triggers can also execute stored
procedures.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
Define right outer join?
What is difference between view and materialized view?
How to replace given values with null using nullif()?
Explain the third normal form(3nf)?
Explain the advantages of merge replication?
explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
How you can change a cross join into an inner join?
Detail about the hardware which is supported by SQL server?
How do you create a clustered index?
A trigger can reference objects outside the current database? State true or false.
What is difference between views and stored procedures?
Is oracle faster than sql server?
What is a user-defined function in the sql server and what is its advantage?
What are the different authentication modes in sql server?
What is database white box testing?