Moneycontrol Brokerage Recos

Saturday, September 24, 2011

Automatic INDEX statistics

Nice feature in 10g and onward - index creation or rebuild automatically calculates statistics for the index. let's check it practically here.


SQL> conn /as sysdba
Connected.


SQL> create table T as select * from dba_objects;

Table created.


SQL> create index tx on T(object_id);

Index created.


SQL> select distinct_keys from user_indexes where index_name='TX';

DISTINCT_KEYS
-------------
        72455



Above you can see statistics is gathered for the index TX created in earlier statement.

Let's now delete the statistics for this index and try to rebuild to see if it gathers the state again automatically by just rebuidling the index.


SQL> analyze index tx delete statistics;

Index analyzed.


SQL> select distinct_keys from user_indexes where index_name='TX';

DISTINCT_KEYS
-------------


Note :- You can see statistisc is no longer available for the index.


Now let's rebuild the index now.

SQL> alter index tx rebuild;

Index altered.



SQL>  select distinct_keys from user_indexes where index_name='TX';

DISTINCT_KEYS
-------------
        72455



Statistics for the index gathered automatically by rebuilding it.

2 comments:

  1. Hmm it seems like your blog ate my first comment (it was super long) so I guess I'll
    just sum it up what I wrote and say, I'm thoroughly enjoying
    your blog. I too am an aspiring blog blogger but I'm
    still new to the whole thing. Do you have any
    recommendations for beginner blog writers? I'd definitely appreciate it.


    my web site; how to cancel google plus account

    ReplyDelete
  2. ӏt's going to be ending of minhe day, however before end I am readіng tthis great post to increase my experience.


    Havе a look at my website :: article rewriter

    ReplyDelete