Hi All,
i am getting Mutating trigger error ( ORA-0491) while updating a table . interestingly the table does not haveĀ triggers . can someone share details why this is happening and what is the possible workaround ?
Db version = 12.1.0.2
update statement:
UPDATE dc_remedy_inbound ri
SET error_desc = error_desc || '-/-' || 'encounter_key Not Valid'
WHERE NOT EXISTS
(SELECT 1
FROM ir_encounter e
WHERE e.encounter_key = ri.encounter_key)
Error at line 62
ORA-12801: error signaled in parallel query server P006, instance es04dbadm03.uhc.com:irdst051 (1)
ORA-04091: table DC_USER.DC_REMEDY_INBOUND is mutating, trigger/function may not see it
regards
Hari.