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
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
The JobOperator is only supposed to list the launchable jobs. You need something like
to see the names of jobs that were previously launched but no longer available.Code:SELECT UNIQUE JOB_NAME from BATCH_JOB_INSTANCE
Last edited by Dave Syer; May 1st, 2009 at 04:05 AM. Reason: spelling