Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Ora error
VIDEOWAY a écrit:
> What means mutating.. ??
> what to do whit an error like that.. ?
> This error append during the execution of a database trigger
> where we insert into gcf_client.
>
> ORA-04091: table GCF.GCF_CLIENT is mutating, trigger/function may not see it
Table is mutating says that in your trigger(which is a row trigger), you try to change the table to which the trigger is associated. In the case of row triggers, only triggers with BRFORE INSERT option can "update" the associated table. Received on Thu Aug 13 1998 - 00:00:00 CDT
![]() |
![]() |