Informatica interview question

How you will end a process while its running on the system?

Interview Answer

Anonymous

12 Jul 2018

"kill" command in unix helps us to terminate any process. We can see what processes are running by simply issuing "ps -ef" command in the terminal and then copy the process id of that particular process and use kill command followed by process id to kill that particular process. This should be handled with care as we dont want to kill any batch jobs or processes which are critical and business should not be affected by it!