删除用户下的所有job

begin
  for v in(select * from user_jobs) loop
    dbms_job.remove(v.job);
  end loop;
  commit;
end;

你可能感兴趣的:(Oracle,jobs,user)