declare
jobno binary_integer;
begin
dbms_job.submit(job=>jobno,
what=>'test;',
next_date=>sysdate);
commit;
end;
dbms_job.submit 例子
最新推荐文章于 2023-09-28 06:28:29 发布
declare
jobno binary_integer;
begin
dbms_job.submit(job=>jobno,
what=>'test;',
next_date=>sysdate);
commit;
end;