what is trigger?
Answers were Sorted based on User's Feedback
Answer / shanthi bhushan
Trigger is procedure which is automatically fires when we
modify the data in table(After i.e.,Data Manipulation wiil
be one)
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / naresh
Trigger is just like a storedprocedure but the only
difference is it is automatically call when the event ocour
or fire.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / srividhya.s
Triggers are simply stored procedures that are executed
automatically by the database whenever
some event (usually a table update) happens.
sample:
CREATE [OR REPLACE]
TRIGGER trigger_name
BEFORE (or AFTER)
INSERT OR UPDATE [OF COLUMNS] OR DELETE
ON tablename
[FOR EACH ROW [WHEN (condition)]]
BEGIN
DBMS_OUTPUT.PUT_LINE(’Ur message to be
displayed ’ :NEW.NAME);
END;
| Is This Answer Correct ? | 9 Yes | 1 No |
A trigger is a DB object like proc. or func. stored in data
dictonary. It will fire implicitly with event on which it
written.
Main use of a trigger are
-- we can take backup of data.
-- Can be used for auditing purpose.
-- For applying complex bussiness rule.
Etc.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / srini
Trigger is a special kind of stored procedure executed
certain event occurs.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sudha
trigger is stored procedure it execute the one event
when another event is happenning for example it can do the
insert operation as well as select operation.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / monika mudgal
Trigger are events that perform some action.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / aarthi
trigger is used nto change the control from one state to
another
| Is This Answer Correct ? | 1 Yes | 0 No |
How to maintain the relation between two tables in ADO.NET?
0 Answers Petranics Solutions,
What is difference between dataset and datatable?
Which object needs to be closed?
how we can fire event in databound coulm in datagfrid withot using button?
What is ole in excel?
What does ado stand for in ado.net?
How to pass values into a datatable?
Which database is the ado.net?
What are the main differences between classic ado and ado.net?
What is a data control clerk?
What is the main difference between ADO and ADO.Net
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)