What is a 'instead of trigger'?

Answers were Sorted based on User's Feedback



What is a 'instead of trigger'?..

Answer / swapna

We can use 'instead of triggers' for views.Using these
instead of triggers we can perform DML operations on a
complex view.In complex views we can not perform DML
operations.But using instead of triggers we can insert ,
delete,update from complex views.

Is This Answer Correct ?    7 Yes 1 No

What is a 'instead of trigger'?..

Answer / kmbkrishnan

Instead of Trigger is also like the FOR trigger, which
are triggered at that time of Insert or update or delete.
The FOR trigger will be triggering After the
Insert / Update / Delete (DML) opreation is executed. But
the Instead of Trigger will be triggering while the DML
operation held and the DML operation is discarded.

Is This Answer Correct ?    2 Yes 0 No

What is a 'instead of trigger'?..

Answer / suresh kumar somayajula

These Triggers are used to modify the VIEW whaich can't be
modified by DML statements.

Thank you,
Suresh.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What are some predefined exceptions in pl/sql?

0 Answers  


How do we tune the code?

2 Answers  


Types of optimization?

6 Answers   Microsoft,


What is sql injection vulnerability?

0 Answers  


I am creating an index on Emp table Empno column,if u using this indexed column in ur SELECT stmt. where clause,then how do u know that yr index will be working or nor? Thanks Advance...

3 Answers  






Why join is faster than subquery?

0 Answers  


what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba

0 Answers  


What are the default Oracle triggers??

3 Answers   CGI, Tech Mahindra,


Can we create non-clustured index on a clustered index ?

4 Answers   TCS,


How show all rows in sql?

0 Answers  


What does closing a cursor do?

0 Answers  


What is NOCOPY?

6 Answers   DELL,


Categories