Jobs with no design time information

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
ray.wurlod
Participant
Posts: 54595
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Jobs with no design time information

Post by ray.wurlod »

The following query will identify jobs with no design time information.

Code: Select all

SELECT NAME FMT '40L' 
from DS_JOBS
where NAME NOT LIKE '\\%'   -- exclude category names and control records
and not exists (select NAME from DS_JOBOBJECTS where DS_JOBS.JOBNO = DS_JOBOBJECTS.OBJIDNO)
HEADING "Jobs that have no design time information 'GTG' Page 'PLL'";


So will this query.

Code: Select all

SELECT NAME FMT '40L' 
from DS_JOBS
where NAME NOT LIKE '\\%'   -- exclude category names and control records
and not exists (select NAME from DS_JOBOBJECTS where DS_JOBS.JOBNO = DS_JOBOBJECTS.OBJIDNO)
HEADING "Jobs that have no design time information 'GTG' Page 'PLL'"
NO.INDEX;


If the results are different, you should allocate some time to rebuilding indexes at least on DS_JOBOBJECTS and DS_JOBS, ideally on the entire project.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply