关于global_stats

Oracle reference上对于global_stats有一个这样的解释:

GLOBAL_STATS VARCHAR2(3)
-------------------------
For partitioned tables, indicates whether statistics were
collected by analyzing the table as a whole (YES) or
were estimated from statistics on underlying partitions
and subpartitions (NO)

USER_STATS VARCHAR2(3)
-----------------------
Indicates whether statistics were entered directly by the
user (YES) or not (NO)

但是在我们经常做表的分析时会看到使用dbms_stats和analyze在这个方面也会有点不同。
就是当使用dbms_stats来分析表的时候global_stats是YES,而用analyze来分析表的时候就是NO.
而且num_rows结果也会有些不同:
SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for IBM/AIX RISC System/6000: Version 10.2.0.3.0 - Productio
NLSRTL Version 10.2.0.3.0 - Production

SQL> create table test
  2  (id number(10),
  3   name varchar2(50));

Table created.

SQL> create index test_pk on test(id);

Index created.

SQL> begin
  2     for i in 1 .. 1000000
  3     loop
  4        insert into test values (i,'alan');
  5     end loop;
  6     commit;
  7  end;
  8  /

PL/SQL procedure successfully completed.

SQL> select count(1) from test;

  COUNT(1)
----------
   1000000

尝试用dbms_stats来分析表:
--------------------------
SQL> select global_stats,user_stats,num_rows from user_tables
  2  where table_name='TEST';

GLO USE   NUM_ROWS
--- --- ----------
YES NO     1001204

SQL> select global_stats,user_stats,distinct_keys from user_indexes
  2  where table_name='TEST';

GLO USE DISTINCT_KEYS
--- --- -------------
YES NO        1000000

为什么num_rows是1001204呢?一直很疑惑......

SQL> exec dbms_stats.delete_table_stats(ownname=>'SYS',tabname=>'TEST');

PL/SQL procedure successfully completed.

SQL> select global_stats,num_rows from user_tables
  2  where table_name='TEST';

GLO   NUM_ROWS
--- ----------
NO

SQL> select global_stats,distinct_keys from user_indexes
  2  where table_name='TEST';

GLO DISTINCT_KEYS
--- -------------
NO

下面用analyze方法来分析一下:

SQL> select global_stats,num_rows from user_tables
  2  where table_name='TEST';

GLO   NUM_ROWS
--- ----------
NO     1000000

SQL> select global_stats,distinct_keys from user_indexes
  2  where table_name='TEST';

GLO DISTINCT_KEYS
--- -------------
NO        1000000

基本上就是这样。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/12361284/viewspace-227922/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/12361284/viewspace-227922/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值