plsql之procedures、job的简单应用

procedures
代码:

create or replace procedure UP_EMPLOYEES as

begin

(相关sql语句)
update UP_EMPLOYEES
set xm='zhangsan'
where xh='1' 

commit;
end UP_EMPLOYEES;

job
相关
what:UP_EMPLOYEES; --定时任务的过程 
interval:trunc(sysdate,'hh')+1/(24) --执行时间每小时执行
上一篇:2021-11-16


下一篇:php内核探索之zend_execute的具体执行过程