Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Triggers Still a Compilation Problem
Tried this code but still getting compilation errors
CREATE OR REPLACE TRIGGER SET_OH_FLAG BEFORE INSERT ON INDEX_FUND_XREF
FOR EACH ROW
WHEN (new.FUND LIKE '62100%')
BEGIN
:new.OH_FLAG=1;
END;
Other considerations:
Bill West
SDSC
Received on Wed Oct 14 1998 - 13:15:41 CDT