Quote:
|
Originally Posted by Cougar8000
read up on fpages and npages. diff between them should be your trigger to runstats. What that diff is upto you as you play with it. I think generally it is between 10 and 20%
|
I think this is a misleading statement.
Code:
> select count(1) from a_table
1
--------------
10000
> load from a_file ... insert into a_table
> select count(1) from a_table
> select count(1) from a_table
1
--------------
10000000
> create index an_index on a_table ...
Did the fpages/npages ratio change? No. Do you want to collect statistics still? I know I would.