Determining indexes that are not used in 10g

Is there a way to identify indexes that are not utilized in 10g? We have ADDM and AWR running nightly.
Thanks in advance...

You can enable index monitoring with
alter index <index_name> monitoring usage;
When the index is used V$OBJECT_USAGE.USED column will be set to YES. If the index is not used the USED column will show NO.
test@ORCL> alter index i_test monitoring usage;
Index altered.
Elapsed: 00:00:00.04
test@ORCL> select * from v$object_usage;
INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
Elapsed: 00:00:00.04
test@ORCL> explain plan for
  2  select object_id from test;
Explained.
Elapsed: 00:00:00.10
test@ORCL> select * from v$object_usage;
INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
Elapsed: 00:00:00.00
test@ORCL> select count(*) from test;
  COUNT(*)
     50425
Elapsed: 00:00:00.00
test@ORCL> select * from v$object_usage;
INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
I_TEST                         TEST                           YES NO  01/04/2007 07:52:21
Elapsed: 00:00:00.00
test@ORCL> select * from test where object_id =1;
no rows selected
Elapsed: 00:00:00.07
test@ORCL> select * from v$object_usage;
INDEX_NAME                     TABLE_NAME                     MON USE START_MONITORING    END_MONITORING
I_TEST                         TEST                           YES YES 01/04/2007 07:52:21
Elapsed: 00:00:00.00
test@ORCL>You turn of index monitoring with the following:
alter index <index_name> nomonitoring usage;

Similar Messages

  • EM monitor indexes that are being used?

    Hello,
    I wonder if with Oracle Enterprise Manager dbconsole, is possible monitor the indexes that are being used during a determine period as in TOAD?
    Thanks

    Hi,
    Index monitoring is started and stopped using the ALTER INDEX syntax shown below.
    ALTER INDEX my_index_i MONITORING USAGE;
    ALTER INDEX my_index_i NOMONITORING USAGE;
    Information about the index usage can be displayed using the $OBJECT_USAGE view.
    Query :-
    SELECT index_name,
    table_name,
    monitoring,
    used,
    start_monitoring,
    end_monitoring
    FROM v$object_usage
    WHERE index_name = 'MY_INDEX_I'
    ORDER BY index_name;
    The V$OBJECT_USAGE view does not contain an OWNER column so you must to log on as the object owner to see the usage data
    Thanks
    Pavan Kumar N.

  • Imports that are not used

    Hi Everybody,
    Out of curiosity, I want to know what is the impact of the import statements that are not used in a program.
    Thanks
    Vikas

    At runtime there no impact.But at compile time it parses all the imports before compiling the class.
    Correct me if iam wrong
    Sada

  • List users of specific databases that are not using the default storage quotas

    I have an Exchange 2010 SP3 DAG with 4 databases. I am trying to use powershell to find out, per database, which mailboxes are
    not using the "mailbox database defaults", which is unlimited in this case (no quotas for Issue warning, Prohibit send, and Prohibit send and receive).
    Something like "get-mailbox | where  {$_.UseDatabaseQuotaDefaults -ne $true} will not work because I just want the data for specific databases".
    I have also tried "get-mailbox -database nameofdatabase | where {$_.UseDatabaseQuotaDefaults -ne $true} | out-file c:\temp\nameofdatabase.tx" but it lists some users that show unlimited for all categories and others some that have limits on certain
    other ones. In short, it is not correct.
    HDL

    Hi,
    From your description, I would like to clarify the following thing:
    Running the Get-Mailbox -Database MBX1 | Where-Object {$_.usedatabasequotadefaults -eq $false} cmdlet will list all mailboxes who have a custom storage quota. But it only displays the value of ProhibitSendQuota. You can check the values of other storage
    quotas via EMC.
    EMC -> Recipient Configuration -> Mailbox -> double click the mailbox -> Mailbox Settings -> Storage Quotas
    Hope my clarification can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • Tzupdater.How it reflects the users that are not using the new USA DST rule

    If I update the JRE with tzupdater or just replace it with newer JRE will the time change according to the time zone I live in because I think that the changes in USA DST will not apply for the most of the other countries.

    Hi,
    You can do this directly in OAM, with option "a" (using auxiliary object class). You configure OAM to use the main person object class (inetorgperson) and then you can associate extra auxiliary object classes to it - and header variables can be set from any of the attributes that are in the user's profile, both main and auxiliary.
    Regards,
    Colin

  • I book text boxes that are not used will not show up in the printed book?

    If I don't want to use all the text boxes for my printed book will the outline be printed anyway?(black background with white text box) I assume there is no way to turn the captions off.
    Many thanks in advance.
    Dennis

    Dunny
    Welcome to the Apple user to user assistance forums
    Which theme and layout are you discussing
    In general text boxes do not show in printed books - however they must have something in them - at least a single space
    But some clearly show up - in the travel theme the layouts that have text blocks that look like a torn piece of paper or a post card will of course print
    Always preview your book and verify the resulting PDF to see what you rfinal book will look like - http://support.apple.com/kb/HT1040
    And usually I can find an alternative layout with no text
    LN

  • Determine databases that are being used sharepoint 2007

    I have a Sharepoint farm where I am moving all databases over to a new server and configuring sql mirroring. Is there a way to tell which database's Sharepoint is currently using I need a way to tell system and content databases. So with that said does
    anyone know of a way to check this? I've gone into Sharepoint and selected the backup option in order to see a list of database names however I would like another way to verify which dbs are used.

    This is in the wrong forum, 2007 questions should be posted in the legacy forum.
    You've got "stsadm -o enumcontentdbs" which should give you all the content DBs but i don't know of one that will list all the other Shared Service Provider databases.

  • Report Usage (show those that are not used)

    How do I identify which reports haven't been accessed in the last 12 months?
    Below is the script to show the current report usage... but i need to know which ones haven't been accessed
    select c.name,
    e.userName,
    e.format,
    e.parameters,
    e.timeStart,
    e.status
    from REPORTSERVER.DBO.EXECUTIONLOG e
    left outer join charon.reportserver.dbo.catalog c on e.reportID = c.itemID
    where
    e.timeStart >= dateAdd(mm,-6,getDate())
    order by timestart desc

    select *from charon.reportserver.dbo.catalog cwhere c.itemid not in (select c.itemid
    from REPORTSERVER.DBO.EXECUTIONLOG e
    left outer join charon.reportserver.dbo.catalog c on e.reportID = c.itemID
    where
    e.timeStart >= dateAdd(mm,-6,getDate())
    Andrew Sears, T4G Limited, http://www.performancepointing.com

  • I can't texted people on iMessage that are not registered with iMessage

    hello,
    I have my iphone, ipad and mac book pro all link together with imessage my phone works fine but if i want to text a person from my mac book or my ipad that are not using an apple product it says the number is not registered with imessage how can i send regular texted with my mac book or ipad.
    thank you

    Hello there, DJ Jason B.
    The following Knowledge Base article provides clarification about how Messages works and which options are available:
    iOS: Using Messages
    http://support.apple.com/kb/ht3529
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How to Find the Queries that are not hitting the indexes..

    Guys,
    Hope you all doin well.
    Would you guys please tell me any view , or any resource that can help me to identify those SQL Statements that are not hitting the indexes properly, Causing the system to slow down at peak times.
    Thanks
    Rgrds
    Y.Vo.

    any resource that can help me to identify those SQL Statements that are not hitting the indexes properlyInteresting ! Is there any specific reason of looking only for those queries, which are not making proper use of indexes.
    hare krishna
    Alok

  • TS1368 I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.

    I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.
    Can you help please?

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • How do you add/use typekit fonts that are not edge web fonts?

    I am just trying out the new Muse CC 2014.1 (August) release and was keen to try the new font facilities.  As far as I can see that while I can now add other fonts for which I have downloaded web font files via the Self Hosted Web Fonts function, Typekit fonts that are not "Adobe Edge Web Fonts" are effectively unavailable?  Have I missed something.
    As an example I want to use the Proxima Nova web font family.  I have selected it on the type kit site, set them up to Sync via my Creative Cloud account.  So for example if I select a font in Photoshop CC or Illustrator, the Proxima Nova fonts appear. Even ok in Word for Mac.  They do not appear in Muse.
    To add them as self hosted web fonts, I would need to physically download the relevant fonts files and install them on my desktop using the OS-X font tool.  However as they are being sync'd via Creative Cloud this shouldn't be necessary should it?  Also I don't see an option for doing so on the typekit site.
    Any help or guidance would be very welcome.
    PS:  I seem to have a separate issue with the Creative Cloud app, which is not listing fonts under the Assets tab.  But I don't think that is related as they are working fine for Photoshop, etc.

    Hi David,
    I'm sorry that you ran into trouble with this. To add fonts from Typekit to your Muse website, you will want to use the web fonts path instead of desktop fonts.  (You can use a desktop font synced from Typekit in your Muse design, but it will exported as an image the same as any other system font.)
    There are a couple options for using Typekit web fonts in Muse:
    o) The Muse Insider wrote a post on how to insert the Typekit embed code from the Muse interface:
    http://museinsider.com/how-to-add-typekit-fonts-to-your-muse-site.html
    o) Or you can add the embed code to the Page Properties dialog within Muse, which will include it in the <head> of the page when you export your website. The steps are the same as this tutorial, but you will add the Typekit embed code to Muse instead of into your page directly:
    TYPEKIT | Adding fonts to your site
    Note that in either case the Typekit fonts will not be displayed in the Muse preview window. You'll need to publish your site to a server in order for the Typekit fonts to be loaded into the page.
    If those look like more coding that you are comfortable with, you might try one of the fonts which you can select from the font menu instead. Here are some that are similar to :
    https://edgewebfonts.adobe.com/fonts#/?xHeight=high&contrast=low&class=sans-serif&width=re gular
    We are also working on a more complete integration of Typekit with Muse in the future, but I can't say yet when that will be available.
    >> PS:  I seem to have a separate issue with the Creative Cloud app, which is not listing fonts under the Assets tab.  But I don't think that is related as they are working fine for Photoshop, etc.
    Do you see a "loading" icon in the tab (e.g. a blue spinner wheel)?  It sounds similar to this thread; you might try these suggestions:
    Re: Adobe Creative Cloud / Desktop App / Home Screen: Constant Spinning Wheel
    I hope that this helps; let me know if you have any other questions.  Best,
    -- liz

  • I recently purchased a new Macbook Air and used migration to transfer old files from my old PC to the Mac, and now there are songs that I purchased through Itunes on my phone that are not on my Mac, how do I transfer these songs from the phone to the Mac?

    I recently purchased a new Macbook Air and used migration to transfer old files from my old PC to the Mac, and now there are songs that I purchased through Itunes on my phone that are not on my Mac, how do I transfer these songs from the phone to the Mac?

    dnunn wrote:
    ... how do I transfer these songs from the phone to the Mac?
    Transfer Purchases  >  http://support.apple.com/kb/HT1848
    Download Past Purchases  >  http://support.apple.com/kb/HT2519

  • Using custom classes that are not beans

    Hi folks,
    Is it possible to use java classes that are not beans. I mean, on a page, could you say Customer cust = new Customer("Jones", 25);
    if you had a Customer class with a constructor that took a name and age (String and int).
    If so, how do you go about this- do you need to import the class, or put it in a standard location? I'm using Tomcat, and would guess that this would go in WEB-INF/classes?
    I hope it's not a stupid question, all the literature seems to be focused on JavaBeans
    Any advice on this would be great!

    Beans are used as putting Java code into a JSP is generally considered bad practice. The advantage of the bean pattern is that you use things like:
    <jsp:setProperty name="laBean" property="someSetter" value="someValue" />so that you aren't embedding Java directly into the JSP. I'm not very religious about this particular topic personally and will throw a line or two in here and there.
    Having said that though, you can easily use any Java class in a JSP. You'll have to import it first:
    <%@ page import="java.util.*" %>And then you can easily use it like in a real Java program.

  • What is font book used for? I read the description but still unsure. Does it contain fonts that are not already on the computer

    What can I use font book for? I read the description but still don't get it. Does it contain fonts that are not already installed on my new Mac? Thanks.

    Disabling (turning off) a font will make it unavailable for use in any font menu. You can alwasy enable the font(s) again - they're not gone permanantly. DON'T disable System fonts, though -> that's just asking for trouble.
    Here's -> https://www.youtube.com/watch?v=JdR6-4lnF5A - a good video tutorial about using Font Book.
    Clinton

Maybe you are looking for

  • Turn off Documents in used List

    My Goal is to turn off Recent Docs History In Adobe Reader 9.13.  You can set display in Reader to 1 but not 0.  Next attempt was Registry modifications which I could clear all Document History List by clearing out Registry entries but OpenSaveMRU en

  • Date order in SSRS report

    Hi All; I am using below formula for date order in SSRS =Format( Fields!scheduledstartValue.Value, "MM yyyy") Date comes in teh order as below for teh year 2014 order is right but 2015 should be at the last Any much appreciated Thanks Pradnya07

  • Why do Preview and Textedit open up old files unbidden?

    I open a text file or image file and the LAST text file or pic I had open opens up with the one I want. Anyone know what's up with that?

  • SUn Policy Agent 2.2 for Weblogic 92

    We are using SUN POlicy agent 2.2. (for Weblogic) for Access Manager 6.3 For this particular application I intermittantly get SSOToken invald message Its a sporadic behavior (sometimes work sometime does not) error - 02/02/2007 12:22:41:057 PM EST: T

  • 23.0.1 single file size download limit

    Can you download a single file over 4 gigabytes. Is there a limit of simultaneous files from a single website (1000+ files)