| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Parallel Query Question
Hi Chuck,
I think this should do what you want.
select
p.inst_id coord_instance,
p.indx coord_pid,
s.inst_id slave_instance,
s.kxfpdpnum slave_pid
from
x$kxfpdp s,
x$ksupr p
where
s.kxfpdpnum != 999 and
p.addr = s.kxfpdpcpr and
p.inst_id = s.kxfpdpcin
order by
1, 2, 3, 4
/
@ Regards,
@ Steve Adams
@ http://www.ixora.com.au/
@ http://www.christianity.net.au/
-----Original Message-----
Sent: Wednesday, 11 April 2001 7:16
To: Multiple recipients of list ORACLE-L
Is there a way to associate parallel query processes with the session that's running the query?
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steve Adams INET: steve.adams_at_ixora.com.au Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Apr 11 2001 - 06:40:26 CDT
![]() |
![]() |