Jobs do not appear in DS Manager, Designer or Director

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
ewartpm
Participant
Posts: 97
Joined: Wed Jun 25, 2003 2:15 am
Location: South Africa
Contact:

Jobs do not appear in DS Manager, Designer or Director

Post by ewartpm »

:cry: The problem we are experiencing is that every now and then the jobs disappear from the client tools.

I can still export them, but they are not visible in DS Manager, Designer or Director.

One of the ways to fix this is to do a Rebuild Repository Indices using DS.TOOLS or to recreate the project.

Can someone please explaining why this is happening?
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Repository indexes can become corrupted (out of date) if any updating process is abnormally terminated.

It is possible to verify whether the indexes need rebuilding without actually doing it, using the LIST.INDEX command. It would be useful to have this on the DS.TOOLS menu.

Code: Select all

LIST.INDEX DS_DATATYPES ALL
LIST.INDEX DS_JOBS ALL
LIST.INDEX DS_JOBOBJECTS ALL
LIST.INDEX DS_CONTAINERS ALL
LIST.INDEX DS_ROUTINES ALL
LIST.INDEX DS_STAGETYPES ALL
LIST.INDEX DS_METADATA ALL
LIST.INDEX DS_TRANSFORMS ALL
If you have DS/390 the following additional commands.

Code: Select all

LIST.INDEX DS_JCLTEMPLATES ALL
LIST.INDEX DS_IMSDATABASES ALL
LIST.INDEX DS_IMSVIEWSETS ALL
LIST.INDEX DS_IMSDBOBJECTS ALL
LIST.INDEX DS_IMSVSOBJECTS ALL
LIST.INDEX DS_DSMFPROFILES ALL
The report in each case is the same as the one produced within the command to re-index. It shows, among other things, whether each index needs to be rebuilt.

The DS.REINDEX command (or the option from DS.TOOLS) drops each index and rebuilds each index afresh, whether it needs it or not. This is the safest approach, but requires exclusive access.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ewartpm
Participant
Posts: 97
Joined: Wed Jun 25, 2003 2:15 am
Location: South Africa
Contact:

Post by ewartpm »

Thanks Ray, much appreciated.
Post Reply