Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Improve performance on below query.

Improve performance on below query.

From: James Williams <techsup_at_mindspring.com>
Date: Wed, 23 Aug 2000 14:26:02 GMT
Message-ID: <39a3deb3.7977368@news.mindspring.com>

Below is a query I need to get to perform better. It is using a lot of resources during fetch. ky_so_no on both tables has an index. Any hints!

select count(*)
from
 woa.serv_ord where ky_so_no not in ( select ky_so_no from woa.so_fld_ord_rao)   

call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ----------



Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 1 666.59 667.68 336598 3625877 26201 0
------- ------ -------- ---------- ---------- ---------- ----------

total 3 666.59 667.68 336598 3625877 26201 0

Misses in library cache during parse: 1
Optimizer goal: CHOOSE
Parsing user id: 5

Rows Row Source Operation

-------  ---------------------------------------------------
      0  SORT AGGREGATE 
      0   FILTER 

   6549 TABLE ACCESS FULL SERV_ORD
   6548 TABLE ACCESS FULL SO_FLD_ORD_RAO
Received on Wed Aug 23 2000 - 09:26:02 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US