Data Warehousing Community Forum

ETL Tools => Informatica => Topic started by: balambigai85 on July 05, 2010, 03:11:37 pm



Title: Stop a Workflow forcibly
Post by: balambigai85 on July 05, 2010, 03:11:37 pm
Hi frenz,
Tell me how to stop a workflow when the stop / abhort doesnt help in 8.6?

In 8.1, I remember we had an option to kill the connection does exist between informatica and Database.



Title: Re: Stop a Workflow forcibly
Post by: Allegra on July 05, 2010, 04:53:19 pm
The best way is to kill is from Unix end - if your Informatica hosts on Linux/Unix servers.

Code:
ps -ef | grep "pmcmd"
From the above command you get a list of workflows that are running as of now.

Get a process id corresponding to the session that you are running.

Code:
Kill -9 <pid>