当前位置:  数据库>oracle

Linux/Unix shell 自动发送AWR report

    来源: 互联网  发布时间:2017-05-18

    本文导语: 观察Oracle数据库性能,Oracle自带的awr 功能为我们提供了一个近乎完美的解决方案,通过awr特性我们可以随时从数据库提取awr报告。不过awrrpt.sql脚本执行时需要我们提供一些交互信息,因此可以将其整合到shell脚本中来实现自动...

观察Oracle数据库性能,Oracle自带的awr 功能为我们提供了一个近乎完美的解决方案,通过awr特性我们可以随时从数据库提取awr报告。不过awrrpt.sql脚本执行时需要我们提供一些交互信息,因此可以将其整合到shell脚本中来实现自动产生指定时段的awr报告并发送给相关人员。本文即是描述linux shell脚本来实现此功能。

1、shell脚本

robin@SZDB:~/dba_scripts/custom/awr> more autoawr.sh
#!/bin/bash
# --------------------------------------------------------------------------+
#                  CHECK ALERT LOG FILE                                    |
#  Filename: autoawr.sh                                                    |
#  Desc:                                                                  |
#      The script use to generate AWR report and send mail automatic.      |
#      The sql script autoawr.sql call by this shell script.              |                         
#      Default, the whole day AWR report will be gathered.                | 
#      Deploy it to crontab at 23:30                                        |
#      If you want to change the snap interval,please change autoawr.sql  |
#          and crontab configuration                                        |
#  Usage:                                                                  |
#      ./autoawr.sh $ORACLE_SID                                            | 
#                                                                          |
#  Author : Robinson                                                      |
#  Blog  : http://blog.csdn.net/robinson-0612                            |
# --------------------------------------------------------------------------+
#
# --------------------------
#  Check SID
# --------------------------

if [ -z "${1}" ];then
    echo "Usage: "
    echo "      `basename $0` ORACLE_SID"
    exit 1
fi

# -------------------------------
#  Set environment here
# ------------------------------

if [ -f ~/.bash_profile ]; then
    . ~/.bash_profile
fi

export ORACLE_SID=$1
export MACHINE=`hostname`
export MAIL_DIR=/users/robin/dba_scripts/sendEmail-v1.56
export MAIL_LIST='Robinson.cheng@12306.com'
export AWR_CMD=/users/robin/dba_scripts/custom/awr
export AWR_DIR=/users/robin/dba_scripts/custom/awr/report
export MAIL_FM='oracle@szdb.com'
RETENTION=31

# ----------------------------------------------
# check if the database is running, if not exit
# ----------------------------------------------

db_stat=`ps -ef | grep pmon_$ORACLE_SID | grep -v grep| cut -f3 -d_`
if [ -z "$db_stat" ]; then
    #date >/tmp/db_${ORACLE_SID}_stauts.log
    echo " $ORACLE_SID is not available on ${MACHINE} !!!"  # >>/tmp/db_${ORACLE_SID}_stauts.log
    MAIL_SUB=" $ORACLE_SID is not available on ${MACHINE} !!!"
    MAIL_BODY=" $ORACLE_SID is not available on ${MACHINE} at `date` when try to generate AWR."
    $MAIL_DIR/sendEmail -u $MAIL_SUB -f $MAIL_FM -t $MAIL_LIST -m $MAIL_BODY
    exit 1
fi;

# ----------------------------------------------
# Generate awr report
# ----------------------------------------------
$ORACLE_HOME/bin/sqlplus /nolog/tmp/db_${ORACLE_SID}_stauts.log
    MAIL_SUB=" Occurred error while generate AWR for ${ORACLE_SID}  !!!"
    MAIL_BODY=" Some exceptions encountered during generate AWR report for $ORACLE_SID on `hostname`."
    $MAIL_DIR/sendEmail -u $MAIL_SUB -f $MAIL_FM -t $MAIL_LIST -m $MAIL_BODY
    exit
fi

# ------------------------------------------------
# Send email with AWR report
# ------------------------------------------------
dt=`date -d yesterday +%Y%m%d`
filename=`ls ${AWR_DIR}/${ORACLE_SID}_awrrpt_?_${dt}*`
if [ -e "${filename}" ];then
    MAIL_SUB="AWR report from ${ORACLE_SID} on `hostname`."
    MAIL_BODY="This is an AWR report from ${ORACLE_SID} on `hostname`."
    $MAIL_DIR/sendEmail -u $MAIL_SUB -f $MAIL_FM -t $MAIL_LIST -m $MAIL_BODY -a ${filename}
    echo ${filename}
fi

# ------------------------------------------------
# Removing files older than $RETENTION parameter
# ------------------------------------------------

find ${AWR_DIR} -name "*awrrpt*" -mtime +$RETENTION -exec rm {} ;
exit   


    
 
 

您可能感兴趣的文章:

  • 怎么实现Windows和Linux之间数据的接收发送
  • Linux下怎样发送广播信息?
  • Linux mail发送 Email,急...
  • mysql iis7站长之家
  • linux下几个设备通过串口串行连接,如何协调各串口发送数据
  • linux中邮件发送后是否会保存在服务器中
  • LINUX下如何发送邮件
  • 怎么用LINUX发送HTTP请求??
  • 我想在windows下往linux发送udp包,为什么收不到呀,请指教!
  • 关于linux下如何向操作系统发送按键的问题
  • Linux下的Qmail、Sendmail是怎样来判断邮件发送和接收。
  • linux下用串口接受和发送数据问题
  • linux串口程序可以发送数据,但是不能接受数据?谁知道原因?
  • linux下邮件的发送
  • 100分求linux下串口调试工具,要可以发送、接收十六进制
  • linux 如何接收发送邮件?
  • linux c编写的利用cmpp发送短信的源代码
  • 在linux下用串口发送数据问题:
  • 有什么软件可以通过网络把文件从windows发送到嵌入式机的linux
  • Linux 串口发送接收数据问题
  • linux 服务器,每周神秘死机,这个怎么查?有没有类似于crash report之类的东西?看过System Log了没有可以参考的地方,只是在某段时间没记录
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux bash shell命令:grep文本搜索工具简介
  • 小弟没写过shell,求解 linux shell 命令
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • Linux命令、编辑器与Shell编程 和 UNIX SHELL范例精解(第4版) 区别大么?
  • linux bash shell命令:文本搜索工具grep中用于egrep和 grep -E的元字符扩展集
  • redhat linux7.2/7.3,SHELL下,reboot是重启,那么要在SHELL下关机是什么命令???
  • linux bash shell命令:文本搜索工具Grep命令选项及实例
  • linux下的shell可以做出什么应用
  • linux bash shell命令:文本搜索工具grep正则表达式元字符集(基本集)
  • Linux Shell环境 Zsh
  • linux下的shell到底怎么搞啊
  • Linux程序中运行shell命令
  • 谁有linux shell编程方面比较好的语法资料哦?
  • Linux的SHELL程序 hsh
  • linux下的shell问题!!!
  • linux查看当前系统用户的总数以及shell数量
  • shell是不是就是linux的命令?
  • 不同发行版本的linux的系统管理和shell编程一样吗?
  • linux的shell的参数个数限制
  • linux shell脚本不重复在后台运行,急急急
  • 在Linux Shell scripts下变量如何取linux的命令运行值
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,