獲取AWR的指令碼,可以在crontab裡面部署

raysuen發表於2019-05-17

使用方法可以在指令碼最後檢視,或者使用-h引數獲取幫助。


版本更新:

    1 修改不能在rac環境執行的問題。

            修改後獲取本節點的awr,不能指定獲取其他節點的awr



因為shell指令碼不能直接上傳,我使用雲盤分享指令碼。

指令碼獲取路徑:

連結:

提取碼:z5bb 



#!/bin/bash
#by raysuen
#v02
. ~/.bash_profile
AWR_FORMAT=html
NUM_DAYS=2
############################################
#獲取指定時間的snapid的函式
############################################
getsnapID(){
	BEGIN_SNAP_ID=`sqlplus -S / as sysdba <<-RAY
		set heading off trimspool on feedback off
		SELECT trim(SNAP_ID) FROM DBA_HIST_SNAPSHOT a,v\\$instance b where to_char(END_INTERVAL_TIME,'yyyymmddhh24')='$1' and a.instance_number=b.instance_number;
		RAY`
	END_SNAP_ID=`sqlplus -S / as sysdba <<-RAY
		set heading off trimspool on feedback off
		SELECT trim(SNAP_ID) FROM DBA_HIST_SNAPSHOT a,v\\$instance b where to_char(END_INTERVAL_TIME,'yyyymmddhh24')='$2' and a.instance_number=b.instance_number;
		RAY`
	#判斷獲取的snapid是否為空
	if [ -z ${BEGIN_SNAP_ID} ];then
		echo "The script can not get a valid snap id,please enter a right time for -b."
		exit 96
	fi
	if [ -z ${BEGIN_SNAP_ID} ];then
		echo "The script can not get a valid snap id,please enter a right time for -e."
		exit 96
	fi
	BEGIN_SNAP_ID=`echo ${BEGIN_SNAP_ID} | sed 's/ //g'`
	END_SNAP_ID=`echo ${END_SNAP_ID} | sed 's/ //g'`
}
############################################
#獲取幫助的函式
############################################
my_fun(){
	echo "SYNOPSIS:"
	echo "	./GET_AWR.sh -b begin_time -e end_time -n awr_name"
	echo "OPTIONS:"
	echo "	-b specify a time for begin time of awr,format yyyymmddhh24"
	echo "	-e specify a time for begin time of awr,format yyyymmddhh24"
	echo "	-n specify a name for name of awr"
	echo "EXAMPLE:"
	echo "	./GET_AWR.SH -b 2019051708 -e 2019051709 -n test"
	echo "	./GET_AWR.sh -b \`date +'%Y%m%d18' -d '+1 day ago'\` -e \`date +'%Y%m%d19' -d '+1 day ago'\`  -n test"
}
############################################
#指令碼入口,獲取引數
############################################
if [ $# -lt 1 ];then
	echo "You must specify parameters:"
	echo "	-b begin time of awr"
	echo "	-e end time of awr"
	exit 99
fi
while (($#>=1))
do
	if [ "$1" == "-b" ];then
		shift
		awrbegintime=$1
		shift
		continue
	fi
	if [ "$1" == "-e" ];then
		shift
		awrendtime=$1
		shift
		continue
	fi
	if [ "$1" == "-n" ];then
		shift
		awrname=$1
		shift
		continue
	fi
	if [ "$1" == "-h" ];then
		my_fun
		exit 0
	fi
	shift
done
############################################
#健壯性檢查
############################################
#引數不可以為空
if [ -z ${awrbegintime} ];then
	echo "You must specify parameters:-b for begin time of awr"
	exit 98
fi
if [ -z ${awrendtime} ];then
	echo "You must specify parameters:-e for end time of awr"
	exit 98
fi
if [ -z ${awrname} ];then
	echo "You must specify parameters:-n for report name of awr"
	exit 98
fi
#判斷引數為時間
date -d "${awrbegintime:0:8} ${awrbegintime:8:2}" > /dev/null 2>&1
if [ $? -ne 0 ];then
	echo "The valus of -b is invalid date."
	exit 97
fi
date -d "${awrendtime:0:8} ${awrendtime:8:2}" > /dev/null 2>&1
if [ $? -ne 0 ];then
	echo "The valus of -e is invalid date."
	exit 97
fi
############################################
#執行函式,獲取snap id
############################################
getsnapID ${awrbegintime} ${awrendtime}
############################################
#定義awr報告的路徑
############################################
AWR_LOG=/u02/logout/awr/AWR_${awrname}_${awrbegintime}_${awrendtime}.html
############################################
#獲取awr報告
############################################
echo -e "$AWR_FORMAT\n$NUM_DAYS\n$BEGIN_SNAP_ID\n$END_SNAP_ID\n$AWR_LOG\n"|(sqlplus -S / as sysdba @?/rdbms/admin/awrrpt.sql) > /dev/null
############################################
#幫助:
#	引數區分大小寫
#	-b awr的開始時間,格式:yyyymmddhh24
#   -e awr的結束時間,格式:yyyymmddhh24
#   -n awr報告中的名字
#例子:
#	./GET_AWR.SH -b "2019051708" -e "2019051709" -n test
#	./GET_AWR.sh -b `date +'%Y%m%d18' -d '+1 day ago'` -e `date +'%Y%m%d19' -d '+1 day ago'`  -n test
############################################


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28572479/viewspace-2644807/,如需轉載,請註明出處,否則將追究法律責任。

相關文章