Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: load file for triggers
>>
The problem appears to be that when parsing the load file, it doesn't notice
when one trigger stops and the next starts...
e.g.
CREATE TRIGGER myFirstTrigger
...
DECLARE
...
BEGIN
...
END;
CREATE TRIGGER mySecondTrigger
<<
Have you tried making your END statements like this...
END myFirstTrigger;
instead of just "End;"? Received on Tue Sep 21 1999 - 12:48:18 CDT
![]() |
![]() |