Re: Trigger calling stored procedure
Hi Jim,
Try:
DELIMITER $$
DROP TRIGGER `updt_tbl1`$$
CREATE TRIGGER `updt_tbl1` BEFORE UPDATE ON `main_table`
FOR EACH ROW
CALL a_stored_procedure(NEW.col1, NEW.col2, OLD.tblkey);
$$
DELIMITER ;
DELIMITER $$
DROP PROCEDURE IF EXISTS `a_stored_procedure`$$
CREATE PROCEDURE `a_stored_procedure`(val1 INT, val2 INT, val3 INT)
BEGIN
UPDATE table2 SET col1 = val1, col2 = val2 WHERE tblkey = val3;
UPDATE table3 SET col1 = val1, col2 = val2 WHERE tblkey = val3;
END$$
DELIMITER ;
Subject
Views
Written By
Posted
19719
December 30, 2008 04:21PM
6755
December 30, 2008 06:07PM
6051
December 31, 2008 09:33AM
Re: Trigger calling stored procedure
6078
December 30, 2008 06:29PM
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.