replcement trigger for
Hi All,
This is the code that is written in oracle
CREATE OR REPLACE TRIGGER bcd_trigger
BEFORE CREATE
ON DATABASE
DECLARE
oper ddl_log.operation%TYPE;
BEGIN
INSERT INTO ddl_log
SELECT ora_sysevent, ora_dict_obj_owner,
ora_dict_obj_name, NULL, USER, SYSDATE
FROM dual;
END bcd_trigger;
/
what will be its equivalent trigger in mysql?
Thankx & regards,
Subject
Views
Written By
Posted
replcement trigger for
4017
August 09, 2007 04:50AM
2543
August 23, 2007 09:05AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.