Operating System - HP-UX
1752618 Members
4440 Online
108788 Solutions
New Discussion юеВ

how to check the complete information of a PID

 
ng_7
Regular Advisor

how to check the complete information of a PID

Dear Experts,

I am trying to find out the Oracle request ID for a process.

the command I use was

ps -ef |grep
but what I get is only
"FNDLIBR FND Concurrent_Processor MANAGE OLOGIN="APPS/94A491A1"

it doesn't tell me what is the request ID,

please tell me what is the right command to use.

thanks
3 REPLIES 3
Jeeshan
Honored Contributor

Re: how to check the complete information of a PID

request ID?

you mean user ID(name)?

or source path?

a warrior never quits
Dennis Handly
Acclaimed Contributor

Re: how to check the complete information of a PID

>ps -ef |grep

The only benefit of grep is to find both the PID and the children and other random strings.
Why not do: ps -fp
Patrick Wallek
Honored Contributor

Re: how to check the complete information of a PID

You might try adding a '-x' to ps command to get more information about the process.

ps -efx | grep

If you what you require doesn't show up from that, then the info is not in the process table.