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

Home -> Community -> Usenet -> c.d.o.misc -> optimize this query

optimize this query

From: Sreelal <sreelalpp_at_gmail.com>
Date: 30 Nov 2005 23:36:37 -0800
Message-ID: <1133422596.976333.303250@g14g2000cwa.googlegroups.com>

in the following qry,

SELECT D_RIF_SALD FROM
(SELECT DISTINCT D_RIF_SALD FROM GP_TR_CONTR_VAR ORDER BY 1 DESC) WHERE ROWNUM <= 3;

Suppose the table contains >1 crore records the query will be slow as we are
using Distinct on a column which repeats . Now it takes > 80 secs Any idea to make the query fast

Kalu Received on Thu Dec 01 2005 - 01:36:37 CST

Original text of this message

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