Page 1 of 1

What are the jobs are running

Posted: Thu Nov 15, 2007 9:00 am
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

Posted: Thu Nov 15, 2007 9:06 am
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.

Posted: Thu Nov 15, 2007 4:51 pm
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.