Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Can't access SOME table's statistics.
On Mon, 31 Jul 2000 15:11:48 -0400, "Robert Wagner" <RobertWagner_at_alum.mit.edu> wrote:
>I presently have 8 tables in a schema. When I do a SELECT on USER_TABLES I
>see all
>of them, but I don't get anything in statistical columns like NUM_ROWS,
>BLOCKS,
>EMPTY_BLOCKS, and AVG_SPACE for three of the tables. Is there something like
>(this is pure speculation):
>
>ENABLE STATISTICS_COLLECTION ON mytable
>
>that would be required to for this data to be collected?
>
You need to analyze the tables to collect the stats. Do something
like:
analyze table your_table_name estimate statistics;
and you should see some figures. There are options to compute stats or estimate sampling different percentages etc. Received on Mon Jul 31 2000 - 00:00:00 CDT
![]() |
![]() |