There is something wrong with this trigger. But what?

CREATE  TRIGGER MYCOOLTRIGGER
AFTER INSERT ON MYCOOLTABLE
REFERENCING NEW AS newRow
FOR EACH ROW
DECLARE
BEGIN
END  MYCOOLTRIGGER;

SQL Developer output:

Warning: execution completed with warning
TRIGGER MYCOOLTRIGGER Compiled.

Is there any way to get more info on this Warning?

P.S.

This question could use a better title. ;)

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Oracle requires that you have something between BEGIN and END.

You can use NULL (a no-op):

CREATE OR REPLACE TRIGGER MYCOOLTRIGGER
AFTER INSERT ON MYCOOLTABLE
REFERENCING NEW AS newRow
FOR EACH ROW
DECLARE
BEGIN
    NULL;
END  MYCOOLTRIGGER;
link|improve this answer
feedback

If you want to see what the errors are:

show errors trigger mycooltrigger;
link|improve this answer
Returns "No Errors." – NitroxDM Oct 26 '09 at 15:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.