DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: what does this dbms job code do?

  1. #1
    Join Date
    May 2001
    Location
    Atlanta US
    Posts
    262
    Hi Gurus,

    Can anyone tell me what this dbms job code does?

    VARIABLE v_JobNum NUMBER
    BEGIN
    DBMS_JOB.SUBMIT(:v_JobNum, 'PQT_LES_UPLOAD;', SYSDATE, 'SYSDATE + 1/24');
    END;
    /


    Thanks!
    Hemant

  2. #2
    Join Date
    Jul 2002
    Location
    Washington DC
    Posts
    110
    Hi,

    It will execute PQT_LES_UPLOAD procedure in 1 hr gap.

    i.e. if u submit & execute it 08/08/02 10:00: a.m next
    it will execute at 08/08/02 11:00: a.m . U can see the details in user_jobs as well as dba_job.

    Manoj

  3. #3
    Join Date
    May 2002
    Posts
    37
    This code will create dbms job with first execution of PQT_LES_UPLOAD procedure at submit time and then it
    will be scheduled for execution with 1 hr interval.

    Regards.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width