Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is trigger



what is trigger..

Answer / ranganath

In a DBMS, a trigger is a SQL procedure that initiates an
action (i.e., fires an action) when an event (INSERT,
DELETE or UPDATE) occurs. Since triggers are event-driven
specialized procedures, they are stored in and managed by
the DBMS. 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 are used to
maintain the referential integrity of data by changing the
data in a systematic fashion.
Each trigger is attached to a single, specified table in
the database.

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.

A trigger can also contain INSERT, UPDATE and DELETE logic
within itself, so when the trigger is fired because of data
modification it can also cause another data modification,
thereby firing another trigger. A trigger that contains
data modification logic within itself is called a nested
trigger.

Is This Answer Correct ?    20 Yes 1 No

Post New Answer

More SQL Server Interview Questions

Why the trigger fires multiple times in single login?

0 Answers  


How much is a sql server license?

0 Answers  


What is mean by dml?

0 Answers  


What is the purpose of the master database?

0 Answers  


How does SSIS(Sql Server Integration Services) deffer from DTS(Data Transformation Services)?

0 Answers   MCN Solutions,


How to view existing indexes on an given table using sp_help?

0 Answers  


sql server syntax to add "!" sign to "name" field of "employee" table in a manner that all names have the same lenght of 20 characters

1 Answers  


Which data type can be used only on OUTPUT parameters of the stored proceduer?

2 Answers  


Your table has a large character field there are queries that use this field in their search clause what should you do?

0 Answers  


What are the indexes in sql server?

0 Answers  


What is the use of stored procedure?

0 Answers  


What is the xml datatype?

0 Answers  


Categories