analyze table compute statistics for all indexes : Analyze « SQL Plus « Oracle PL / SQL






analyze table compute statistics for all indexes

  
SQL>  set serveroutput on
SQL>  set echo on
SQL>
SQL>
SQL>  create table t
  2     ( x, y null, primary key (x) )
  3     as
  4     select rownum x, username
  5      from all_users
  6      where rownum <= 100;

Table created.

SQL>
SQL>  analyze table t compute statistics;

Table analyzed.

SQL>
SQL>
SQL>  analyze table t compute statistics for all indexes;

Table analyzed.

SQL>
SQL>
SQL>  set autotrace on explain
SQL>
SQL>  select count(y) from t where x < 50;
  COUNT(Y)
----------
        14

1 row selected.


Execution Plan
--------------------------------------------------
Plan hash value: 2966233522

--------------------------------------------------
-------------------------

| Id  | Operation          | Name | Rows  | Bytes
| Cost (%CPU)| Time     |

--------------------------------------------------
-------------------------

|   0 | SELECT STATEMENT   |      |     1 |     8
|     2   (0)| 00:00:01 |

|   1 |  SORT AGGREGATE    |      |     1 |     8
|            |          |

|*  2 |   TABLE ACCESS FULL| T    |    14 |   112
|     2   (0)| 00:00:01 |

--------------------------------------------------
-------------------------


Predicate Information (identified by operation id)
:

--------------------------------------------------
-


   2 - filter("X"<50)

SQL>
SQL>  drop table t;

Table dropped.

SQL>
SQL>  set autotrace off
SQL> --

   
  








Related examples in the same category

1.analyze materialized view
2.analyze index
3.Analyze table with primary key and foreign key
4.Demonstrate IN versus EXISTS performance
5.analyze table tableName compute statistics for table, for all indexes, for all indexed columns;
6.ANALYZE TABLE employee COMPUTE STATISTICS
7.analyze index validate structure
8.analyze table compute statistics
9.analyze table compute statistics for a table with two indexes
10.create or replace outline and analyze table compute statistics
11.Analyze a table with/without index
12.Anayze all objects in the APPOWNER schema.
13.Analyze index on varchar2 value and date type value
14.analyze and autotrace full outer join and union
15.analyze and autotrace single column key and multi-column key
16.analyze and autotrace table with primary key
17.analyze index t_idx validate structure
18.analyze table TABLENAME compute statistics;
19.analyze table after creating index
20.analyze table estimate statistics
21.analyze table students compute statistics
22.analyze table t compute statistics for table for columns id;
23.analyze table t compute statistics for table, for all indexes, for all indexed columns