how to create a before shutdown trigger
Printable View
how to create a before shutdown trigger
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