Oracle分析表简介

来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:55 点击:
  Oracle分析表是Oracle数据库管理的重要部分,下面就为您详细介绍Oracle分析表方面的知识,希望对您学习Oracle分析表方
    面能有所帮助。
    1、分析SQL:
    analyze table tablename compute statistics
    等同于 analyze table tablename compute statistics for table for all indexes for all columns
    for table的统计信息存在于视图:user_tables 、all_tables、dba_tables
    for all indexes的统计信息存在于视图: user_indexes 、all_indexes、dba_indexes
    for all columns的统计信息存在于试图:user_tab_columns、all_tab_columns、dba_tab_columns
    删除分析SQL:
    analyze table tablename delete statistics 会删除所有的statistics
    2、Oracle分析表的作用:为了使基于CBO的执行计划更加准确
    DBA_tables的数据有变化,可做对比。详见官方文档:
    Use the ANALYZE statement to collect non-optimizer statistics, for example, to:
    Collect or delete statistics about an index or index partition, table or table partition, index-organized
    table, cluster, or scalar object attribute.
    Validate the structure of an index or index partition, table or table partition, index-organized table,
    cluster, or object reference (REF)。
    Identify migrated and chained rows of a table or cluster.
    dbms_stats的作用主要是替代analyze的收集统计信息这一块的功能,且在这一方面做了相当大程度上的增强。
    以analyze table table_name compute statistics;这条为例,生成的统计信息会存在于user_tables这个视图,查看一下
    select * from user_tables where table_name=table_name;
    观察一下NUM_ROWS,BLOCKS,AVG_SPACE,AVG_ROW_LEN几列你就会明白,这就是变化。
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Table函数使用简介
    • Oracle数据库Constraint约束的常用操作及异常处理
    • Bulk Collect性能分析(zz)
    • export/import的使用
    • OCP043第十五讲 Database Security
    • ORACLE10gr2数据导入MySQL方案
    • oracle 让sys用户可以使用isqlplus
    • 在oracle数据库下使用iSQL*Plus DBA访问数据库
    • Oracle行列转换小结
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1