Does Indes stats get auto collected when stats auto collection is on?

In 10g and 11g, does Index stats get auto collected when stats auto collection is on (by default)? When do we need it? As I saw nothing in INDEX_STATS in both 10g and 11g.
Thanks.

Default is FOR ALL COLUMNS SIZE AUTO. statistics for indexes were also collected.
Index stats will be populated only if you validate structure. The view INDEX_STATS is only populated after you run an analyze index name validate structure. if you log out you no longer see the statistics
analyze index <index_name> validate structure;
select * from index_stats;
You'll see the information.
Edited by: Anantha on Jan 12, 2009 2:16 PM
Edited by: Anantha on Jan 12, 2009 2:25 PM

Similar Messages

  • Why does my video get zoomed in when i export to quicktime movies?

    my video looks great with final cut
    but once I convert it to quicktime it zooms in the image and i loose video on the perimeter so people end up getting cut off
    any advice?

    Post your question on the Final Cut Studio forum. This is FCPX.

  • Why does my footage gets cut off when i drop it in the timeline?

    i preview my footage and it looks fine, but when i drop it in the time line it cuts alot off

    Hi Duncananinthebrain,
    Seems that the sequence settings you chose is not proper.
    Please right click on the clip in the project panel & click new sequence from clip. Else you can drag & drop the clip from the project panel to the "new item" icon.
    Try that & hopefully it will work.
    Thanks

  • Why does my playlist get rearranged when burned??

    Why does my playlist get totally rearranged when it is burned to a disc??

    Depends on what you're doing. Processor intensive things generate more heat, such as graphics intensive games or videos.
    Warm is normal, hot is not. If it's too hot to handle (literally) you need to make an appointment at your local apple store and have them check it out.

  • Why do I get an error when clicking on topics in email?

    I subscribe to the forum posts that I create and by doing so I get an email when the thread has been updated. The email contains a link to the message thread but when I click I got an Apple.com webpage saying "An error has occurred". Does anyone else have this problem? How do you fix it?

    That's the truth. I get the same error when I log in
    (and it's on my Mac computers!!).
    Thanks for sharing! I was beginning to feel paranoid and think it was a Windows XP thing...

  • Does The Query get Fired Again

    Does the query get fired again when i query a existing view
    1. create view abc as select name from Table
    2. select name from abc
    Table is a really large table wid many columns and many rows
    Lookin for a better performance coz i need names in one procedure and again need the same names for deletion in another procedure
    I dont want to fire the same query twice dats y.

    > there are like 20000 rows out of wch i need 2 retrieve 9000 or 10000 rows dependin on
    the constraints
    Go slow on the I'M SPEAK please... much better to deal with technical issues when using proper English.
    A 20,000 rows table is tiny and running a SQL that returns 10,000 or so rows, should be execute in seconds.. the slowest part of the operation should be shipping that 10,000 rows to the client (across the network) in case of a remote client.
    Maybe if you can describe the physical structure of the table (heap, index, partitioned?) and pinpoint just where the performance problem is (execution plan or an SQL*Plus autotrace), we could comment on why the performance seems (or maybe truly is) slow.

  • HT1338 my mac is running 10.5.8, I bought a new Nano, itunes is prompting me to get the current itunes, but my mac will not take it, states I need 10.6.8.  How do I get that?  When I run a software update, system says there is none.  Help

    my mac is running 10.5.8, I bought a new Nano, itunes is prompting me to get the current itunes, but my mac will not take it, states I need 10.6.8.  How do I get that?  When I run a software update, system says there is none.  Help

    Click here, check that your computer meets the requirements, buy and install the DVD, and then run Software Update.
    (73181)

  • I get this error when downloading key not valid for use in specified state what do i do

    i get this error when downloading key not valid for use in specified state what do i do

    What is your operating system?  What are you trying to download?

  • Why does iphone state account limit reached when creating an id?

    Why does iPhone state "Account Limit Reached" when trying to sign in?
    (I created the id online)

    why not re-post in the iCloud forum?  https://discussions.apple.com/community/icloud/icloud_on_my_mac  

  • When does an AP gets to Air-Monitor mode?

    Q: When does an AP gets to Air-Monitor mode?
    A: In a Mobility-controller AP deployment there are just 3 conditions that an AP can go into an Air-Monitor(AM) Mode:
    1. If the am-mode is configured in the "rf dot11a-radio-profile" or "rf dot11g-radio-profile"
    To see if it is configured in the radio profile please use this filter in the show running-config command
    Example:
    (Aruba) #show running-config | begin "rf dot11a-radio-profile"
    Building Configuration...
    rf dot11a-radio-profile "default"
     mode am-mode  ------------------------------------------------------------- Indicates that the Airmonitor is Enabled
    2. If Mode Aware ARM is turned on in the  ARM profile then th ap turns to AM mode when it sees excess power from the neighbor AP
    To see if mode aware arm is enabled in the arm profile please use this filter in the show running-config command
    (Aruba) #show running-config | begin "rf arm-profile"
    Building Configuration...
    rf arm-profile "default"
       mode-aware                 ------------------------------------------------- Indicates that the mode aware arm is enabled                           
    3. During the Regulatory mismatch or un-supported
    a.    When there is no channel available for the AP’s operation for the country defined on the controller.
    Use the following command to verify the allowed channels for an AP
    (Aruba-7240) #show ap allowed-channels ap-name <name-of-ap>
    b.    When AP’s has a different country with the controller’s Country.
    Compare the country defined on the controller "(Aruba) #show country" to the country defined in the "(Aruba) #show ap regulatory-domain-profile <profile-name>". The ap regulatory-domain-profile will be mapped in the ap-group to which the ap is provisioned to.

    Hi Marc,
    I have a shop system comprised of two web applications where one is for
    maintaining the shop and the other for using the shop. When I do changes
    to the shop from the one webapp they do not show up in the second, unless
    I call refresh. Also, I have to switch off the cache, it seems and do a
    flush on the changed objects. There are some questions now:
    a) when I call refresh, is the complete state reread regardless whether
    there have been changes or not or does it know, when the state has not
    changed in the DB ? it is a performance question, I guess.
    b) can I use transactional reads to do the refresh automatically ?
    c) I noticed that refresh does not do a deep refresh of all the objects
    referenced by the one to be refreshed. Is there a way to do this or do I
    have to go thru all the objects ?
    I asked some questions some time ago in another thread, which might refer
    to. I am sorry, if I am not clear enough.
    Best regards
    Wolfgang
    Marc Prud'hommeaux wrote:
    Wolfgang-
    I take the question to mean that you are wondering how you can refresh
    the state of a persistent instance to reflect changes in the data store.
    If that is the case, then you can just call
    PersistenceManager.refresh(ob) on the object, and the newer values will
    be obtained.
    If that doesn't help, can you clarify the question a little?
    In article <cj7ris$mhr$[email protected]>, Wolfgang Kundrus wrote:
    Do I have to use transactional reads for an object to get the changes done
    by another web application ?
    Thanks
    Wolfgang
    Marc Prud'hommeaux
    SolarMetric Inc.

  • Why does my form data gets cleared out when clicking on the back button.

    Can someone explain why does my form selections get cleared out when clicking on the back button.
    I have a JSP page that displays a form with some selections and text boxes. I populate the page and submit the request. The action on the submit call another jsp page, which processes the data and displays the results via a <jsp:include> statement which calls the results page. When clicking on the back button from the results page, it returns me to the form page, but the selections are cleared out.
    1. Is there something in my calling of the pages that causes this behavior and can I prevent it?
    I notice that the behavior is different when using the IE 6.0 version Netscape 7.1. IE clears the page Netscape 7.1 retains the settings.
    If I cannot prevent this behavior does that mean I will have to save the state of the form data. And if I have to save the form data, what would be the easiest method of doing this. I'm a beginner to JSP and Java, but have some ASP experience. I don't understand why the back button in a JSP request clears the form data but a regular HTML page does not can someone explain?
    THANKS.

    the browser doesn't have to remember what you submitted and fill that back in.
    you can't prevent it unless you can ensure a new request to the server in which you can fill the default values in there.

  • Does anyone ever get a human being when calling prepaid support at 888-294-6804?an stay on the line, but it just keeps repeating the menu options and eventually hangs up on me.  That is really irrita

    Does anyone ever get a human being when calling prepaid support at 888-294-6804? It tells me call volumes are higher then normal and I can stay on the line, but it just keeps repeating the menu options and eventually hangs up on me.  That is really irritating!!  I'd at least like the option to wait on hold.  I guess I should have listened to the warnings about prepaid support before switching to prepaid last week.
    The reason I'm calling support is I'd like to know when I will be getting the extra 500MB of data when signing up for auto pay.  This is one of the reasons I switched to a 4G Allset plan.  I signed up for auto pay promptly after setting up my online account when I switched from post paid to pre paid on Thursday July 17, 2014.

        I'm sorry you are having trouble reaching a representative, mhaider60. When calling our Prepaid department you can reach a representative using the following number and prompts: 888-294-6804 when prompted, select 4, 6, and 4 to reach a representative.
    AndreaS_VZW
    Follow us on Twitter @VZWSupport

  • I get this error when I go to imovie, I have instalerat on via appstore, but it does not work. The QuickTime components necessary to view, edit, import and export various types of films are not installed. The components included in the iMovie installer. R

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

  • My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    Clean iPhone charging port with clean dry toothbrush. See if better. If still problem clean charging port again with toothbrush and small amount of Isopropyl Alcohol.

  • HT4259 I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets block somehow when the Express looks like it's set up and 'green' - no in

    I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets blocked somehow when the Express is online and looks like it's set up perfect and 'green' - but no internet connection for anything even though the Extreme is green and the modem is good.  Once I disconnect the Express, everything is good again.
    I've tried LAN, WAN, though a switch, direct connect, Extreme set to Extend the network, the Express set to be an extension.  Most of the time I get an error trying to update the Express.  But when it seems to be set up perfect, the entire house can't get to the internet.  Just when it looks right, it is so wrong.
    If anyone can give me exact steps (e.g., "...from the Base Station menu, select the Restore Default Setting option" vice "...just restore the defaults..."), I would greatly appreciate it.  I'm left to the conclusion that the Express is faulty.  I've been using Airport Utility 6.2 from Mountain Lion on one computer and Airport Utility 5.6.1 from Snow Leopard on another computer (the latter give more control while the former just want you to 'forget' the Express).

    I finally got it working.  I was trying to set it up ethernet.  My biggest mistake was when the new Express came on, I did not select 'Continue' - I went straight to manual thinking that I would get the most setup options in manual mode.  So everything I initially tried always resulted in 'wireless'.  Even when I would update or restore default settings, the Express would not completely restart. Or sometimes I would get an error. So most of the time I had to unplug it.  So when it came back up, none of my changes were retained. But there were a lot of times when everything was green and appeared to be fine. But anytime the ethernet cable was plugged in, no more internet.
    So here's the weird part.  When I finally tried 'continue' (vice manual), I would get 4 options.  One would be 'ethernet' extended.  So I would select it, it gave me green lights, all looked good, and still the same problem.  This is when I got frustrated.  I thought I had exhausted all possible combinations.
    But somehow when trying continue again after another restore, I only got 3 options.  One was the same ethernet extended option (can't remember what the missing 4th one was).  And this time it worked - it gave me the big green circle with the checkmark saying it was successful.  I don't know what I did different, but I know now that it won't work if 4 options come up to choose from.  It will work if only 3 options come up.  And success if only verified by the big checkmark.  Had anyone anywhere said the checkmark declaring success is validation, then maybe I wouldn't have gone down so many rabbit holes thinking it should have been successful.
    As for which Airport Utility I prefer, 6.2 looks nice, but it would just ignore the Express and would want me to 'forget' it and would not let me edit it.  Airport Utility 5.6.1 was the one that I ended up using the most and finally had success with.  It still strikes me as odd that there is no manually way to pick ethernet, it can only be choosen following a 'restore defaults', and only from the 3-option list (the 4-option list had the same ethernet choice, but it no worky).
    Thanks for the response.  I really do appreciate it.
    Aiport Extreme Gen5 - internet access and router
    Airport Express Gen2 - connected via ethernet, extending my wireless
    - configured while connect directly to the Extreme, but now on a switch (16-port hub)
    Using Airport 5.6.1
    1) Restore Defaults from Base Station menu
    2) Following restart, Select Continue
    3) Of the 3 option presented, select 'ethernet.... extend network...'
      - if 4 options are present, may not work
    4) Wait for the green circle with the big white checkmark.
    5) Connected Express to the switch where a cable went to other end of house - works.
    Dead-zone went from 2mbps to 24mbps.
    I probably spent 4 hours chasing my tail in anger.  The correct way took about 5 minutes total.
    Thanks again.

Maybe you are looking for

  • Calculating Life to date values

    Hi there, the users are looking to get life to data values for service order. We can do this in the query (on the front end) but the performance takes a big hit due to the volume of records that are retrieved. So we are looking to build this calculat

  • Update table a columns using columns from table b (values of 2 columns of table b need to taken from table c)

    Guys, I need to update table A columns col3, col4, col5 and col6 by table b columns col3, col4, col5 and col6 however table b col5 and col6 values need to come from table c col1. Means table b col5 and col6 have values in it however i need to replace

  • Base Class NI View Fails

    Hi I am currently trying to leverage of my existing codebase by creating a Base class View containing common functionality. My goal is to create the Base class in the form of a (MFC) CFormView with an associated dialog resource containing all my NI c

  • MFP M177fw Scan to email facility

    Hi Friends,   I suppose to buy a MFP M177fw for day to day works in my office, Can someone confirm whether it has facility to scan a bunch of documents (10-15 A4 sheets) & save in to difference computers? I know it has wifi so everybody can print. Ca

  • HI GURU

    Can any body tell how to get the customer credit limit report company wise