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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: sql question

RE: sql question

From: Igor Neyman <ineyman_at_perceptron.com>
Date: Fri, 2 Apr 2004 09:15:23 -0500
Message-ID: <000401c418bc$f04d1bc0$0704a8c0@development.perceptron.com>


Rob,
You are right of course.

Igor Neyman, OCP DBA
ineyman_at_perceptron.com

-----Original Message-----

From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of R Zijlstra Sent: Friday, April 02, 2004 1:32 AM
To: oracle-l_at_freelists.org
Subject: RE: sql question

Igor,
I think it should be:

select SUBSTR(hint, INSTR(hint,' ') + 1, LENGTH(hint) - INSTR(hint,' ')
-

1),

       count(*)
  from dba_outline_hints
 where hint like '%INDEX%'
GROUP BY (SUBSTR(hint, INSTR(hint,' ') + 1, LENGTH(hint) - INSTR(hint,' ')
- 1));

--List of indices not used:

Select index_name
  from user_indexes
 where index_name not in (

    Select distinct SUBSTR(hint, INSTR(hint,' ') + 1, LENGTH(hint) - INSTR(hint,' ') - 1)

      from dba_outline_hints
     where hint like '%INDEX%'
	 )

(INSTR changed)

Rob




Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html


Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
Received on Fri Apr 02 2004 - 08:11:47 CST

Original text of this message

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