複製代碼 代碼如下:
#/bin/bash
#該指令碼用於統計硬碟空間和資料表空間的使用方式,並郵件發出
#初始化環境變數
source /home/oracle/.bash_profile
#獲得本機ip
ip=`/sbin/ifconfig eth0 | grep Bcast | cut -d : -f 2 | cut -d " " -f 1`
#切換到本指令碼目錄
cd /home/oracle/shell/
#刪除之前該指令碼產生的記錄檔
rm -rf $ip.txt
#統計硬碟空間
echo -e "您好!
$ip統計資訊如下:\n\n" >> $ip.txt
echo "硬碟空間統計:" >> $ip.txt
/bin/df -Th >> $ip.txt
#統計資料表空間
echo -e "\n\n\n資料表空間統計:" >> $ip.txt
sqlplus -s scott/tiger << EOF >> $ip.txt
set feed off
set lines 400
set pages 900
col 資料表空間名 for a20
select x.tablespace_name 資料表空間名,已用,已指派,已用占已指派的比例,閒置已指派空間,最大可用空間,已指派占最大可用比例,可自動擴充的空間
from (select TABLESPACE_NAME,round(sum(BYTES) / 1024 / 1024 / 1024, 9) 已指派,
round(sum(MAXBYTES - BYTES) / 1024 / 1024 / 1024,2) 可自動擴充的空間,
round(sum(MAXBYTES) / 1024 / 1024 / 1024) 最大可用空間,
to_char(round(sum(BYTES) / sum(MAXBYTES) * 100, 2), '990.99') || '%' 已指派占最大可用比例
from dba_data_files
group by TABLESPACE_NAME) x,
(select a.tablespace_name,
round(a.bytes / 1024 / 1024 / 1024, 9) 已用,
round(b.bytes / 1024 / 1024 / 1024, 9) 閒置已指派空間,
to_char(round(a.bytes / (a.bytes + b.bytes) * 100, 2),
'990.99') || '%' 已用占已指派的比例
from sys.sm\$ts_used a, sys.sm\$ts_free b
where a.tablespace_name = b.tablespace_name) y
where x.tablespace_name = y.tablespace_name
order by 1;
exit
EOF
#把統計結果郵件發出
mutt -s "$ip統計資訊" -- zhangwz@xx.net < $ip.txt
加到作業系統的定時任務中:
每周五的15:30執行此指令碼
複製代碼 代碼如下:
[oracle@ ~]$ crontab -l
30 15 * * 5 /home/oracle/shell/weekcheck.sh