Oracle process identification
I'm guessing this is a rather dumb question but write it off to be new to Oracle V12.c I created a v12.c database without any issues - the database is up and running. But I happen to be at the command line of another session in the O/S and did the following command: ps -ef | grep pmon and I got nothing back. So I checked again - I was logged into a database which was up and running. So i ran the following query against the database:
COL SPID FORMAT a8
COL STID FORMAT a8
SELECT SPID, STID, PROGRAM FROM V$PROCESS ORDER BY SPID;SQL> SQL>