Trace back RT_STATUS files to DS jobs

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
cbres00
Participant
Posts: 34
Joined: Tue Sep 21, 2004 9:20 am

Trace back RT_STATUS files to DS jobs

Post by cbres00 »

Is there a way to trace back RT_xxx files to their Designer jobs?

Regards,
Cathy
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Code: Select all

SELECT NAME FROM DS_JOBS WHERE JOBNO = 'xxx';
Every DataStage job has a unique number, and the mapping is in the DS_JOBS table.
Beware that the SQL is case sensitive.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
cbres00
Participant
Posts: 34
Joined: Tue Sep 21, 2004 9:20 am

Post by cbres00 »

Beautiful....but one question: where do I execute this? ;-)


Cathy
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Easiest answer... from the Administrator. :wink:
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

More complete answer: from the Administrator client Command window for the project.

Alternative answer: from the TCL prompt on the server, which you need to get to via telnet then invoke when attached to your project directory (and having run the $DSHOME/dsenv script) using the uv or uvsh command.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

ray.wurlod wrote:More complete answer: from the Administrator client Command window for the project.
:P
-craig

"You can never have too many knives" -- Logan Nine Fingers
cbres00
Participant
Posts: 34
Joined: Tue Sep 21, 2004 9:20 am

Post by cbres00 »

Beauty!

Thanks!
Cathy
Post Reply