11g 自动收集统计信息

简介: 13Automatic Optimizer Statistics Collection打开:BEGIN  DBMS_AUTO_TASK_ADMIN.ENABLE(     client_name => 'auto optimizer stats collection' ...

13Automatic Optimizer Statistics Collection


打开:

BEGIN
  DBMS_AUTO_TASK_ADMIN.ENABLE(
     client_name => 'auto optimizer stats collection' 
,    operation   => NULL
,    window_name => NULL
);
END;
/

关闭:

BEGIN
  DBMS_AUTO_TASK_ADMIN.DISABLE(
     client_name => 'auto optimizer stats collection'
,    operation   => NULL 
,    window_name => NULL
);
END;
/

数据库监视这每个表的变化信息,当变化超过10%就自动收集统计信息:

(查询统计信息是否过期?DBA_TAB_STATISTICS

Monitoring tracks the approximate number of INSERTs, UPDATEs, and DELETEs for that table and whether the table has been truncated since the last time statistics were gathered. You can access information about changes of tables in the USER_TAB_MODIFICATIONS view. Following a data-modification, there may be a few minutes delay while Oracle Database propagates the information to this view. Use the DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO procedure to immediately reflect the outstanding monitored information kept in the memory.

The GATHER_DATABASE_STATS or GATHER_SCHEMA_STATS procedures gather new statistics for tables with stale statistics when the OPTIONS parameter is set to GATHER STALE orGATHER AUTOIf a monitored table has been modified more than 10%, then these statistics are considered stale and gathered again.

When to Use Manual Statistics?

  • Volatile tables that are deleted or truncated and rebuilt during the course of the day.

  • Objects that are the target of large bulk loads which add 10% or more to the object's total size.

 


相关文章
|
域名解析 网络协议 安全
信息收集的工具你听过几种(盘点信息收集)
信息收集的工具你听过几种(盘点信息收集)
信息收集的工具你听过几种(盘点信息收集)
|
2月前
|
安全 网络协议 API
信息收集(一)
信息收集(一)
|
2月前
|
监控 安全 物联网
信息收集(二)
信息收集(二)
|
5月前
|
域名解析 负载均衡 网络协议
【信息收集】 IP信息收集
IP信息收集、CDN、C段、DNS记录
48 3
|
7月前
|
网络协议 安全 中间件
信息收集与社工技巧
信息收集与社工技巧
79 12
|
安全 网络协议 关系型数据库
信息收集2
信息收集2
52 0
|
域名解析 网络协议 安全
信息收集1
信息收集1
73 0
|
安全 Linux 应用服务中间件
信息收集
信息收集
|
Oracle 关系型数据库
10G自动收集统计信息修改
10G自动收集统计信息修改
116 0
10G自动收集统计信息修改
|
存储 安全 网络协议
信息收集(上)
信息收集是安全渗透测试非常重要的环节,在对目标进行安全渗透之前,需要充分掌握目标的基本信息,通过这些基本信息了解目标的情况,为后续的渗透提供支持。掌握的信息越多、越全面,渗透成功的概率就越大。
下一篇
无影云桌面