advertisements
_____________________________________________________________________________________________________________________
Most of the time DBAs has to perform their tasks quickly and with 100% accuracy. If we wanted to kill multiple oracle processes at time we can use below mentioned command. This command will filter the idle oracle sessions(local=no) and terminate.
kill -9 `ps -ef|grep -i local=no|awk '{print $2}'|xargs`
_____________________________________________________________________________________________________________________
0 comments:
Post a Comment