What are nested triggers ?
Answer Posted / srikanth
A trigger that contains data modification logic within
itself is called a nested trigger.
Use the nested triggers option to control whether an AFTER
trigger can cascade; that is, perform an action that
initiates another trigger, which initiates another trigger,
and so on. When nested triggers is set to 0, AFTER triggers
cannot cascade. When nested triggers is set to 1 (the
default), AFTER triggers can cascade to as many as 32
levels. INSTEAD OF triggers can be nested regardless of the
setting of this option.
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
What is sql architecture?
Why we use joins in sql?
what is innodb? : Sql dba
Which nosql database is best?
Can we call a function containing dml statements in a select query?
Does varchar need length?
Can a composite key be null?
What is server name sql?
Is primary key an index?
What is the difference among union, minus and intersect?
What are inner and outer joins examples of both?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
how to shutdown mysql server? : Sql dba
What are stuff and replace function?
What is record type in pl sql?