禁用与卸载Oracle AWR特性

AWR需要禁用?这么好的东东。缺省的情况下,AWR是可以使用的,需要耗用一定的sysaux表空间。但涉及到有关AWR相关的调试包(需要license)会访问AWR视图或者awr异常又不想更新patch,甚至没有patch可用的情况下,我们可以禁用AWR以及卸载AWR,本文演示了如果禁用AWR功能以及卸载awr相关的数据字典。

1、禁用AWR的目的
    If most of the space in the SYSAUX tablespace is consumed by information associated with the Automatic Workload Repository (AWR), the AWR can be disabled or uninstalled, releasing space in the sysaux tablespace. This is specially relevant to customers who do not have a license to use AWR.

2、如何禁用AWR(Oracle 10g and above)

AWR is enabled by default because many database features that are not part of the Diagnostic Pack such as Automatic Segment Advisor and Undo Advisor need information captured in AWR. Use of these features, which implicitly access some AWR views, does not require Diagnostic Pack license.

What is not permitted without the Diagnostic Pack license is direct access by customers of AWR views and reports. Oracle, therefore, recommends that all customers, with or without Diagnostic Pack license, leave AWR enabled so that they can benefit from features that do not require a license but implicitly use AWR.   (When running both AWR and Statspack collection on one database, it is advised to schedule the two types of collections at different times.  For example, if the AWR takes a snapshot every hour, on the hour, then you could schedule a Statspack snapshot every hour, at the bottom of each hour.)

However, for those users who all the same want to disable AWR, the package DBMS_AWR described below can be instaled and used. The package gives the ability to disable and enable AWR so as not to breaching Diagnostic Pack license terms.

Affected Releases:
All Oracle Database 10g releases and onwards

禁用awr需要下载: dbmsnoawr.plb 文件。
注意这里的禁用我们指的是完全停用。当然通过设置STATISTICS_LEVEL也可以从一定程度上实现类似的目的。
如果将参数STATISTICS_LEVEL设置为BASIC,下列重要的统计信息将不会被收集。
   Automatic Workload Repository (AWR) Snapshots
   Automatic Database Diagnostic Monitor (ADDM)
   All server-generated alerts
   Automatic SGA Memory Management
   Automatic optimizer statistics collection
   Object level statistics
   End to End Application Tracing (V$CLIENT_STATS)
   Database time distribution statistics (V$SESS_TIME_MODEL and V$SYS_TIME_MODEL)
   Service level statistics
   Buffer cache advisory
   MTTR advisory
   Shared pool sizing advisory
   Segment level statistics
   PGA Target advisory
   Timed statistics
   Monitoring of statistics

3、演示禁用AWR

[email protected]:~> export ORACLE_SID=HKBO5
[email protected]:~> sqlplus / as sysdba
[email protected]> select * from v$version where rownum<2;

BANNER
----------------------------------------------------------------
Oracle Database 10g Release 10.2.0.3.0 - 64bit Production

--查看禁用前awr的使用频率
[email protected]> SELECT name,
  2             detected_usages detected,
  3        total_samples   samples,
  4             currently_used  used,
  5             to_char(last_sample_date,‘MMDDYYYY:HH24:MI‘) last_sample,
  6             sample_interval interval
  7        FROM dba_feature_usage_statistics
  8  WHERE name = ‘Automatic Workload Repository‘;

NAME                                                               DETECTED    SAMPLES USED  LAST_SAMPLE      INTERVAL
---------------------------------------------------------------- ---------- ---------- ----- -------------- ----------
Automatic Workload Repository                                             0        207 FALSE 09112014:00:12     604800

[email protected]:~> ll *awr*
-rw-r--r-- 1 oracle oinstall 2369 2014-08-21 17:26 dbmsnoawr.plb

--Author : Leshami
--Blog   : http://blog.csdn.net/leshami

--执行dbmsnoawr.plb,其实质是添加了一个名为dbms_awr的pkg到当前数据库
[email protected]> @dbmsnoawr.plb

Package created.

Package body created.

[email protected]> exec dbms_awr.disable_awr();

PL/SQL procedure successfully completed.

[email protected]> desc dbms_awr
FUNCTION AWR_ENABLED RETURNS BOOLEAN
FUNCTION AWR_STATUS RETURNS VARCHAR2
PROCEDURE DISABLE_AWR
PROCEDURE ENABLE_AWR

--查看disable后awr的状态,返回值为disable
[email protected]> select dbms_awr.awr_status from dual;

AWR_STATUS
-------------------------------------------------------------
DISABLED

--查询awr的数据字典,发现SNAP_INTERVAL变成了0值
[email protected]> select * from dba_hist_wr_control;

      DBID SNAP_INTERVAL                            RETENTION                                TOPNSQL
---------- ---------------------------------------- ---------------------------------------- ----------
 733951103 +40150 00:00:00.0                        +00007 00:00:00.0                        DEFAULT

--再次enable awr
[email protected]> exec dbms_awr.enable_awr();

PL/SQL procedure successfully completed.

--此时SNAP_INTERVAL采样恢复到了缺省值,也就是说过程DISABLE_AWR修改了SNAP_INTERVAL设置
[email protected]> select * from dba_hist_wr_control;

      DBID SNAP_INTERVAL                            RETENTION                                TOPNSQL
---------- ---------------------------------------- ---------------------------------------- ----------
 733951103 +00000 01:00:00.0                        +00007 00:00:00.0                        DEFAULT

4、卸载awr
卸载awr通用用于awr相关功能或特性异常的时候。通过先卸载在安装来达到使awr特性正常化。下面给出步骤,不再演示。
卸载awr脚本:$ORACLE_HOME/rdbms/admin/catnoawr.sql
安装awr脚本:$ORACLE_HOME/rdbms/admin/catawr.sql

sqlplus /nolog
connect / as sysdba
show parameters statistics_level
alter system set statistics_level=basic scope=spfile;
shutdown immediate
startup restrict
$ORACLE_HOME/rdbms/admin/catnoawr
shutdown immediate
startup

5、参考
Doc ID 1909073.1
Doc ID 787409.1

时间: 2024-10-06 06:38:36

禁用与卸载Oracle AWR特性的相关文章

Oracle AWR管理与维护

??AWR是Automatic Workload Repository的简称,中文叫着自动工作量资料档案库.对于AWR的管理,主要是针对快照和基线的管理而言.比如设定快照的间隔,删除快照,设定快照的保留时间.那对于基线而言则是基线的创建,删除,自动创建等.本文主要描述这2部分的内容. 一.快照管理 ??默认情况下,Oracle数据库每小时生成一次快照,并在工作负载库中保留8天的统计信息.必要时,你可以使用dbms_workload_repository程序手动创建,删除或者修改快照等.可以使用O

ORACLE AWR 和 ASH

一.关于ASH 我们都知道,用户在 ORACLE 数据库中执行操作时,必然要创建相应的连接和会话, 其中,所有当前的会话信息都保存在动态性能视图 V$SESSION 中,通过该视图,DBA 可 以查看用户实际执行的操作,或者当前的等待事件等.通常这部分信息是调优过程中的关键 信息,不过,一旦连接断开.会话信息就会被同时从V$SESSION及其它相关视图中清除, 也就是说,用户执行完操作走人,而你(DBA),如果不能在当前逮到他,过了这点,就不知 道它曾经做过什么了. 10g 版本中,ORACLE

(转载)Oracle AWR报告指标全解析

Oracle AWR报告指标全解析 2014-10-16 14:48:04 分类: Oracle [性能调优]Oracle AWR报告指标全解析 2013/08/31 BY MACLEAN LIU 26条评论 [性能调优]Oracle AWR报告指标全解析 开Oracle调优鹰眼,深入理解AWR性能报告:http://www.askmaclean.com/archives/awr-hawk-eyes-training.html 开Oracle调优鹰眼,深入理解AWR性能报告 第二讲: http:

[转]oracle awr报告生成和分析

转自:http://blog.csdn.net/cuker919/article/details/8767328 最近由于数据库cpu占用非常高,导致VCS常常自动切换,引起很多问题. 最近学习一下数据库awr分析数据库sql执行性能的分析报告.下面将初步讲解一下: 1.先登陆数据库,生成awr报告. linux:~ # su - oracle[email protected]:~> sqlplus '/as sysdba' SQL*Plus: Release 11.1.0.6.0 - Prod

[转]Oracle AWR(Automatic Workload Repository)使用解析

一. AWR 说明 Oracle 10g之前对数据库做性能检测使用statspack工具. 关于statspack的说明,参考我的Blog: statspack安装使用 和 report 分析 http://space.itpub.net/28673746/viewspace-757339 Oracle Database 10g 提供了一个新的工具:(AWR:Automatic Workload Repository).Oracle 建议用户用这个取代 Statspack.AWR 实质上是一个 

媲美oracle awr/statspack的mysql awr第一版发布

现发布alpha版mysql awr,其提供的特性类似于oracle awr或statspack+集中式监控.对于原来从事oracle dba或者相关运维的人原来说,这会是个不错的选择. 至于我为什么不选择用zabbix,monyog,nagios等等监控工具,相信各数据库专家们懂的. 系统逻辑结构 支持配置监控多个mysql实例. 关键监控内容 一.源系统配置 建议percona server      5.6/mariadb+,支持mysql,percona,mariadb 5.6,5.7.

mac上卸载oracle jdk 1.8.0_31

mac上卸载oracle jdk 1.8.0_31版本,因为版本太高了.得安装旧版本才行. 卸载的顺序是:进入finder,然后点应用程序,按command+向上箭头键,分别进入根目录的系统与资源库找到java的目录把他删除即可.两个目录都要删除. 要看是否删除成功,打开终端输入:java -version,提示 No Java runtime present, requesting install. 即删除成功,也可以用此命令查看当前java sdk的版本.

oracle 11gr2 deinstall卸载oracle和grid

在10g中要卸载CRS是件非常繁琐的事.到了11g,oracle提供了卸载工具deinstall,用这个工具可以卸载的非常干净.这个工具默认放在oracle用户下的$ORACLE_HOME/deinstall/deinstall,grid用户下的$ORACLE_HOME/deinstall/deinstall .google了下,发现只需要执行这个工具一次就可以了.但 是在自己的实际测试当中分别oracle用户和grid用户各执行了一次才卸载完成.猜想可能只需要grid用户执行一次deinsta

完美完全卸载Oracle 11g数据库

Oracle 11g可在开始菜单中卸载,然后同时需要删除注册表中相关内容. 操作系统:windows10专业版. 卸载步骤: 1.停用oracle服务:进入计算机管理,在服务中,找到oracle开头的所有服务,右击选择停止. 2.在开始菜单中,找到Universal Installer,运行Oracle Universal Installer,单击卸载产品. 3.在产品清单窗口中,单击全部展开,除了OraDb11g_home1外,勾选其他项目,单击删除. 注意下右图中的不能勾上,否则不会弹出直接