about triggers?

Answers were Sorted based on User's Feedback



about triggers?..

Answer / anuj

Triggers are special type of procedure which execute based
on events like insert a new row into table or delete or
update the table.

Is This Answer Correct ?    11 Yes 1 No

about triggers?..

Answer / balaji karpurapu

Trigger is a special kind of stored procedures,
Triggers are executed at the time of even takes
INSERT,UPDATE,DELETE actions.
1)Triggers are executed by attaching with table or view
2)Triggers are not stand alone executable

Triggers are classified into three types
1)DML Triggers
2)DDL Triggers
3)CLR Triggers

Syntax:

CREATE TRIGGER TRIGGER_NAME
ON TABLE/VIEW NAME
AFTER/INSTEAD OF
AS
BEGIN
---------
END

Is This Answer Correct ?    5 Yes 0 No

about triggers?..

Answer / guest

Trigger is special kind of stored proceser

Is This Answer Correct ?    4 Yes 2 No

about triggers?..

Answer / raj

this special kind of stored procedure,this is triggered
while insert, delete,update

Is This Answer Correct ?    1 Yes 1 No

about triggers?..

Answer / riju

Triggers are like auto executable store procedures.Triggers
can be execute before or after any DDL or DML statements.

Is This Answer Correct ?    0 Yes 0 No

about triggers?..

Answer / arun kumar

trigger is proggramed procedures
with the help of trigger we can insert, delte, update data
from two tables

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Dot Net Framework Interview Questions

How do you handle variable number of segments in a route definition?

0 Answers  


how to face first interview in .NET?

2 Answers   HCL, Xponent,


What are class access modifiers

1 Answers  


Can we change web.config settings from iis?

0 Answers  


How to change the action name in mvc?

0 Answers  






What are the benefits of .net framework?

0 Answers  


In .net compact framework, can we free memory explicitly without waiting for garbage collector to free the memory?

0 Answers  


Why we need a separate mobile project template, while we can render our web application in mobile ?

0 Answers  


Is it possible to unit test an mvc application without running the controllers in an asp.net process?

0 Answers  


I can't be bothered with all this CAS stuff. Can I turn it off

1 Answers  


VIEWS WITH SYNTAX AND EXAMPLE IN SQL

1 Answers  


What are the types of authentication in .net

1 Answers  


Categories