jestrada101
Technical User
- Mar 28, 2003
- 332
this is put into a loop that gathers stats against partitions...
dbms_stats.gather_table_stats(
ownname => 'ABC',
tabname => 'TABLEA',
partname => prtn_rec.partition_name,
estimate_percent => 0.1,
block_sample => TRUE,
cascade => TRUE);
Any idea why it wouldn't pull the correct num_rows.
In the table, I have approx 8.5 million rows and status 7.3 million...
Thanks for any ideas!
JE
dbms_stats.gather_table_stats(
ownname => 'ABC',
tabname => 'TABLEA',
partname => prtn_rec.partition_name,
estimate_percent => 0.1,
block_sample => TRUE,
cascade => TRUE);
Any idea why it wouldn't pull the correct num_rows.
In the table, I have approx 8.5 million rows and status 7.3 million...
Thanks for any ideas!
JE