I have several Oracle instances running on a AIX 4.3 box. I use terminal emulation to connect several different types of terminals to this server including RF terminals. Whenever an RF terminal disconnects incorrectly it leaves behind a spinning process with a PPID of 1:
oracle 130696 1 8 07:30:59 - 20:34 oraclegenret (LOCAL=NO)
I can sort for these processes easy enough with:
ps -ef | grep LOCAL=NO
what would be the best way to build a Korn script to identify and kill these processes using something like:
kill -9 130696 #130696 being the PID of the spinnig process
Anyone?
oracle 130696 1 8 07:30:59 - 20:34 oraclegenret (LOCAL=NO)
I can sort for these processes easy enough with:
ps -ef | grep LOCAL=NO
what would be the best way to build a Korn script to identify and kill these processes using something like:
kill -9 130696 #130696 being the PID of the spinnig process
Anyone?