What is mutating trigger?How to avoid it??
Answer Posted / surendra reddy
Mutaing error happens with triggers. It occurs because the
trigger is trying to update a row it is currently using.
The usual fix involves either use of views or temporary
tables so the database is selecting from one while updating
the other.
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
What are secondary keys?
how to create a table index in mysql? : Sql dba
Is full outer join same as cross join?
What is difference between left and right outer join?
What are sql ddl commands?
What is sql indexing?
Mention what are different methods to trace the pl/sql code?
How delete all data from all tables in sql?
what is not null constraint? : Sql dba
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
Is sql considered coding?
How do I create a memory optimized filegroup?
Describe different types of general function used in sql?
What does select * from mean in sql?