Upon executing:

CREATE TEMPORARY TRIGGER DirectoryInsertTrigger INSERT ON Directory 
BEGIN

END;

I get the error: cannot create BEFORE trigger on view: Directory. (AFTER doesnt work either). Why?

link|improve this question

75% accept rate
feedback

1 Answer

I needed to use the INSTEAD OF keyword.

link|improve this answer
Right. I think the same goes for MS SQL, Oracle and probably others.. msdn.microsoft.com/en-us/library/aa224775%28v=sql.80%29.aspx – Vlad Lazarenko Feb 24 at 23:42
feedback

Your Answer

 
or
required, but never shown

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