vote up 2 vote down star

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. ;)

flag

2 Answers

vote up 4 vote down check

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|flag
vote up 0 vote down

If you want to see what the errors are:

show errors trigger mycooltrigger;
link|flag
Returns "No Errors." – NitroxDM Oct 26 at 15:46

Your Answer

Get an OpenID
or

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