What are the jobs are running

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
samba
Premium Member
Premium Member
Posts: 62
Joined: Wed Dec 07, 2005 11:44 am

What are the jobs are running

Post by samba »

How to find the jobs are currently running on Unix Server. Is it possible to get the list of jobs running on server.

Thanks in Advance
samba
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

There are multiple ways to do this, depends on what you are trying to accomplish. You could write some 'job control' to get a list of all jobs in the project and loop through them one by one, checking their current status and building a list of those found to be running.

I usually just run this from the server:

Code: Select all

ps -ef |grep -v grep |grep phantom
To see all running DataStage processes.
-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 »

Open Director client in Status view.
Disable display of Categories, using View menu.
Sort by Status.
Find "Running" in the Status column.

When done, re-enable display of Categories.
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