Click to See Complete Forum and Search --> : shutdown trigger


sona
07-11-2002, 02:41 AM
how to create a before shutdown trigger

aarroyob
07-11-2002, 12:22 PM
CREATE OR REPLACE TRIGGER db_stop BEFORE SHUTDOWN ON DATABASE
BEGIN
null;
END;

I think it had bugs related to this topic in some versions, search in metalink if your version is affected.

Cheers

Angel