Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: trigger on table in other schema results in ORA-00942
frank.van.bortel_at_gmail.com schrieb:
> > On 26 jan, 15:41, Stefan Wetter <swet..._at_arcor.de> wrote:
> > Show the code... one thing pops to mind: did you create the trigger > on owner.table_name? >
IDAV is former "a"
IDAV_TRANS_WALLAU is former "b"
CREATE OR REPLACE TRIGGER IDAV_TRANS_WALLAU.IDAV_A_IUD_R_ID_AUFTR
AFTER DELETE OR INSERT OR UPDATE
ON IDAV.ID_AUFTR
FOR EACH ROW
BEGIN
NULL;
EXCEPTION
WHEN OTHERS THEN -- Consider logging the error and then re-raise RAISE;
![]() |
![]() |