I am using Oracle parallel query feature on a 10G 3-node RAC where each node is a 16-CPU machine.
The question is, how can I see the actual number of Oracle processes spawned to execute the query on all 3 nodes?
I am using Oracle parallel query feature on a 10G 3-node RAC where each
Share
I found it in this article:
First, find out the ID and serial# of the current session:
SELECT paddr, sid, serial# FROM v$session WHERE audsid = userenv('sessionid')Then to see the parallel execution servers that are dedicated to that session:
SELECT qcsid, qcserial#, SID, serial#, server#, degreeFROM gv$px_session pxsWHERE pxs.qcsid = :your_sid AND pxs.qcserial# = :your_serial