Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Problems with trigger creation
I'm tring to add a new atble, and it's associated indexs, and trigger to an
existing instance. The trigger creation is failing with the following error
message:
create or replace trigger TEST_TRIG
*
Here is the syntax I'm using:
create or replace trigger TEST_TRIG
before insert on SUBVOLTS
declare
l_date date;
begin
l_date := :new.dstamp+0;
:new.dstamp := l_date;
end;
/
Can some kind soul point out what I'm doing wrong?
-- "They that would give up essential liberty for temporary safety deserve neither liberty nor safety." -- Benjamin FranklinReceived on Tue May 13 2003 - 09:33:19 CDT
![]() |
![]() |