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 -> Re: TKPROF Output Help

Re: TKPROF Output Help

From: Matt <mccmx_at_hotmail.com>
Date: 16 Nov 2004 00:14:35 -0800
Message-ID: <cfee5bcf.0411160014.59764aa0@posting.google.com>


>
> SELECT T1."PL_EXCP_CODE" "c1", T2."TEXT" "c2", T3."TXTA_2" "c3",
> COUNT(T1."RECD_CODE") "c6"
> FROM csiowner.pbms T1, csiowner.msgs T2, csiowner.tabm T3
> WHERE (RTRIM(T1."PL_EXCP_CODE")=RTRIM(T2."MSGS_NUMBER") OR
> RTRIM(T1."WC_EXCP_CODE")=RTRIM(T2."MSGS_NUMBER")) AND
> SUBSTR(T1."PLANNER_BUYER_ID",1 ,1)=RTRIM(T3."RECORD_KEY") AND
> T3."RECORD_TYPE"='PLNG'
> GROUP BY T1.PL_EXCP_CODE, T2."TEXT", T3."TXTA_2"
>
> 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 19 829.14 853.59 2447 139764 13
> 256
> ------- ------ -------- ---------- ---------- ---------- ----------
> ----------
> total 21 829.14 853.59 2447 139764 13
> 256
>
> Misses in library cache during parse: 0
> Optimizer goal: RULE
> Parsing user id: 5
>
> Rows Row Source Operation
> ------- ---------------------------------------------------
> 256 SORT GROUP BY
> 49007 MERGE JOIN
> 97091 SORT JOIN
> 97090 NESTED LOOPS
> 6936 TABLE ACCESS FULL MSGS
> 97090 TABLE ACCESS BY INDEX ROWID TABM
> 104025 INDEX RANGE SCAN (object id 63660)
> 49007 FILTER
> 339863545 SORT JOIN
> 55548 TABLE ACCESS FULL PBMS
What are the row counts in each of the 3 tables...?

This line concerns me a bit:

339863545 SORT JOIN What indexes do you have on the tables..?

Matt Received on Tue Nov 16 2004 - 02:14:35 CST

Original text of this message

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