在oracle中写了个存储过程如下
create or replace procedure P_SYSTEMNOTICE
is
begin
update sys_note
set status='2'
where to_date(enddate,'yyyy-MM-dd') < sysdate and status='1';
end P_SYSTEMNOTICE;
在oracle下面自己建个文件夹DBMS_Jobs
这样就在oracle中建好了自动任务。