Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: TRIGGER COMPILE problem .. looks EASY ??
bruce.taneja_at_mcd.com wrote:
>
> I did a full import from 8.0.6 to 8.1.7..
>
> Here is the trigger that fails to compile:
>
> 1 create or replace trigger TRG.TBMDPMODBSIUD
> 2 before insert or update or delete on TRG.TBMDPMOD
> 3 declare
> 4 begin
> 5 sys.inf_product_check;
> 6* end;
> SQL> /
>
> Warning: Trigger created with compilation errors.
>
> SQL> show errors
> Errors for TRIGGER TRG.TBMDPMODBSIUD:
>
> LINE/COL ERROR
> -------- -----------------------------------------------------------------
> 3/1 PLS-00201: identifier 'SYS.INF_PRODUCT_CHECK' must be declared
> 3/1 PL/SQL: Statement ignored
> SQL>
looks to me like either that procedure doesn't exist, is invalid, or the
user doesn't have execute permissions on it.
-- Bill Thater Sr. ORACLE DBA Telergy, Inc thaterw_at_telergy.net ---------------------------------------------------------------- "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former." -- Albert Einstein ----------------------------------------------------------------Received on Fri Jan 26 2001 - 10:59:11 CST
![]() |
![]() |