unix cmd [message #58827] |
Thu, 02 October 2003 10:14 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Kapil
Messages: 145 Registered: May 2002
|
Senior Member |
|
|
When i did ps -ef, i got this output now i want to kill the sqlldr process. how should i do. what cmd should i type
kill -9 pid or ppid
UID PID PPID C STIME TTY TIME COMMAND
ggg 10947 10897 0 13:12:22 pts/tc 0:00 sqlplus /nolog
fgg 22893 22892 0 15:10:41 pts/ti 0:00 -ksh
fgg 23038 22278 0 15:11:41 pts/tf 0:00 sqlldr xxxx/yyyyy@tttttttt control=uuuuuuu
fgg10897 10896 0 13:11:51 pts/tc 0:00 -ksh
|
|
|
|
|
|
Re: unix cmd [message #58831 is a reply to message #58830] |
Thu, 02 October 2003 10:35 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Thiru
Messages: 1089 Registered: May 2002
|
Senior Member |
|
|
PID = Process ID
PPID = Parent process ID
In here, the sqlldr process is the child of your shell(or whichever program that invoked it = Parent).
-Thiru
|
|
|