You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
499 B

--------------------------------------------------------
-- DDL for Trigger CUR_TASK_MST
--------------------------------------------------------
CREATE OR REPLACE EDITIONABLE TRIGGER "MIRLE"."CUR_TASK_MST"
AFTER UPDATE OF END_TIME ON CUR_TASK_MST
BEGIN
insert into HIS_TASK_MST
select CUR_TASK_MST.*, systimestamp as "HISTORY_TIME" from CUR_TASK_MST where end_time is not null;
delete CUR_TASK_MST where end_time is not null;
END;
/
ALTER TRIGGER "MIRLE"."CUR_TASK_MST" ENABLE;