Link to home
Start Free TrialLog in
Avatar of anumoses
anumosesFlag for United States of America

asked on

dbms_job.submit question

DECLARE
    x   NUMBER;
BEGIN
    DBMS_JOB.SUBMIT
  ( job       => X
   ,what      => 'daily_ht_don_pros_match_pkg.main;'
   ,interval  => 'SYSDATE+(1/24)'
   ,no_parse  => FALSE
  );
    COMMIT;
END;

I have this job that runs every hour. Wanted to know if there is any parameter here that I can add to only run this package where the update_date is null. Update date is in the table or do I have to add this condition in the package.
ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of anumoses

ASKER

That was what I thought. Thanks for confirming.