When the mutating error will comes? and how it will be
resolved?

Answers were Sorted based on User's Feedback



When the mutating error will comes? and how it will be resolved?..

Answer / chandu

when we try to dml operation on orginal table in trigger.
then the trigger was excuted but while perfoming any action
on original table it will show mutating..

to overcome the above problem we need to create a autonamous
trasaction trigger..

Is This Answer Correct ?    9 Yes 1 No

When the mutating error will comes? and how it will be resolved?..

Answer / pravin more

Mutating error in Trigger:-
When programmer create trigger and give table name abc and
in body if programmer is using same table abc for
selecting,updating,deleting,inserting then mutation occur.
ex.:-
create or replace trigger xyz
after
update
on abc
for each row
referencing :OLD as OLD :NEW as NEW
begin
select max(salary) from abc;

update abc
set location_id=:NEW.location_id
where dept_id=105;

end;
------------------------------------------------------------
In the above example you are updating same table which is
under transaction so mutation problem occur here.

Solution on this is
You can use Temporary table or Materialize view which can
solve above problem

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is database white box testing and black box testing?

0 Answers  


What does the file extension accdb stand for?

0 Answers  


Does pdo prevent sql injection?

0 Answers  


What is the advantage of index in sql?

0 Answers  


How does stored procedure reduce network traffic?

0 Answers  






What are the built in functions of sql?

0 Answers  


What will happen after commit statement ?

2 Answers  


Where is sql database stored?

0 Answers  


what is not null constraint? : Sql dba

0 Answers  


Can we call procedure in select statement?

0 Answers  


Which sql statement is used to delete data from a database?

0 Answers  


how to insert the records in particular position

1 Answers  


Categories