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: Identifying indexes

RE: Identifying indexes

From: Kevin Lange <kgel_at_ppoone.com>
Date: Fri, 22 Nov 2002 15:03:46 -0800
Message-ID: <F001.00509DFA.20021122150346@fatcity.com>

  1. Since DBA_CONSTRAINTS is already connecting to cons$ and cdef, why are you using them in your join ?
  2. Why are you joining to dba_objects ?? What purpose does it fill ?
  3. Why not just join dba_indexes to dba_constraints and rule out the kind of constraints you are not interested in ... i.e. Check Constraints ?

-----Original Message-----
[mailto:Reginald.W.Bailey_at_jpmorgan.com]
Sent: Friday, November 22, 2002 4:04 PM
To: Multiple recipients of list ORACLE-L

I don't get it. "Do a minus"? Mr. Shao could you explain that please.

RWB "Shao, Chunning" <cshao_at_traffic.com>@fatcity.com on 11/22/2002 02:49:15 PM

Please respond to ORACLE-L_at_fatcity.com

Sent by: root_at_fatcity.com

To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> cc:

The following will give you all the indexes that belongs to a constraint

 select distinct t.owner as table_owner, i.table_name, o.owner as index_owner, o.object_name as index_name,s.name as constraint_name,c.constraint_type from sys.cdef$ cd,dba_objects o,sys.con $ s,dba_constraints c,dba_indexes i, dba_tables t Where t.Table_Name = i.Table_Name and i.owner=o.owner and i.index_name=o.object_name and c.constraint_name=s.name and cd.Enabled = o.object_id and cd.con# = s.con# and o.owner not in ('SYS','SYSTEM')

do a minus will get what you want.

-----Original Message-----
Sent: Friday, November 22, 2002 1:40 PM
To: Multiple recipients of list ORACLE-L

I am trying to find out what indexes are in the database only for performance
reasons and do not enforce a constraint. What would be the query to do that?

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: <cemail2_at_sprintmail.com
  INET: cemail2_at_sprintmail.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Shao, Chunning INET: cshao_at_traffic.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: Reginald.W.Bailey_at_jpmorgan.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Kevin Lange INET: kgel_at_ppoone.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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 Fri Nov 22 2002 - 17:03:46 CST

Original text of this message

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