declare
jobno binary_integer;
begin
dbms_job.submit(job=>jobno,
what=>'test;',
next_date=>sysdate);
commit;
end;
dbms_job.submit 例子
最新推荐文章于 2024-02-15 13:04:59 发布
declare
jobno binary_integer;
begin
dbms_job.submit(job=>jobno,
what=>'test;',
next_date=>sysdate);
commit;
end;