Results 1 to 2 of 2

Thread: getting job instances

  1. #1
    Join Date
    Nov 2008
    Posts
    232

    Default getting job instances

    Even if their many job instances with different names in the DB
    jobOperator.getJobNames()
    gives the job configured in the context xml only
    how do i get detailsof all the jobs

  2. #2
    Join Date
    Jun 2005
    Posts
    4,230

    Default

    The JobOperator is only supposed to list the launchable jobs. You need something like

    Code:
    SELECT UNIQUE JOB_NAME from BATCH_JOB_INSTANCE
    to see the names of jobs that were previously launched but no longer available.
    Last edited by Dave Syer; May 1st, 2009 at 04:05 AM. Reason: spelling

Posting Permissions

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