Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Query optimization for a table with half million rows
Don't forget to use the statistics optimizer :
set optimizer_mode=choose in your ini.ora file then you :
analyze index <index_name> compute statistics analyze table <table_name> estimate statisticsAlways Explain plan to see if you use the indexes
Chris.
>the number of rows in the table, then it's best to use bitmap indexes,
>which have a very good performance in such circumstances.
>
>The syntax is:
>
>
>CREATE BITMAP INDEX index_name ON table_name (column1, column2, ...);
>
Received on Sun Sep 20 1998 - 00:00:00 CDT
![]() |
![]() |