plsql之procedures、job的简单应用

procedures代码:create or replace procedure UP_EMPLOYEES asbegin(相关sql语句)update U
procedures
代码:create or replace procedure UP_EMPLOYEES asbegin(相关sql语句)
update UP_EMPLOYEES
set xm='zhangsan'
where xh='1' commit;
end UP_EMPLOYEES;
job
相关
what:UP_EMPLOYEES; --定时任务的过程 
interval:trunc(sysdate,'hh')+1/(24) --执行时间每小时执行