Page 1 of 1

kill a parallel job from datastage director

Posted: Fri Jun 12, 2009 4:20 pm
by deepthi
Hi

when a parallel job is running , it can have multiple instances, means multiple pids for one job.

How can we identify the pid's of the job and clear them from datastage director. Is there any other better way.

Thanks
Deepthi

Posted: Fri Jun 12, 2009 4:27 pm
by nagarjuna
ps -aeg | grep phamtom ---> will give the datastage background processes running

In director , you can use clean up resources

Posted: Fri Jun 12, 2009 4:38 pm
by deepthi
Thank you for the reply,

How do we know that all these process belong to one single job?

Thanks
Deepthi

nagarjuna wrote:ps -aeg | grep phamtom ---> will give the datastage background processes running

In director , you can use clean up resources

Posted: Fri Jun 12, 2009 5:52 pm
by nagarjuna
ps -aef | grep jobname

Posted: Fri Jun 12, 2009 5:53 pm
by nagarjuna
There is also ENV variable to show PID ...APT_PM_SHOW_PIDS ( i am not sure about its name )

Posted: Fri Jun 12, 2009 7:13 pm
by deepthi
Thank you for the information
nagarjuna wrote:There is also ENV variable to show PID ...APT_PM_SHOW_PIDS ( i am not sure about its name )