自動生成Statspack的指令碼
以下為Oracle資料庫,自動生成Statspack的指令碼。
可以設定在每天的23點許,一次性生成當天的資料庫Statspack Report,時間範圍為9:00~18:00的工作時間,抓取週期為1小時一次。
以下為sql的指令碼,shell部分可以根據具體OS環境確定,筆者環境為Windows 2003 Server。
[@more@]set serveroutput on
set feedback off
set trims on
spool sp_temp.sql
declare
cursor cursnap(sdate varchar2) is
select a.snap_id beginid,
b.snap_id endid,
'Z:dbashellmonitordba_logspcas_' || substr(sdate,5) || '_' || a.snap_time || b.snap_time ||
'.log' repname
from (select rownum r, snap_id, to_char(snap_time, 'hh24') snap_time
from perfstat.stats$snapshot
where snap_time between to_date(sdate||'0830', 'yyyymmddhh24mi') and
to_date(sdate||'1730', 'yyyymmddhh24mi')
order by 2) a,
(select rownum r, snap_id, to_char(snap_time, 'hh24') snap_time
from perfstat.stats$snapshot
where snap_time between to_date(sdate||'0930', 'yyyymmddhh24mi') and
to_date(sdate||'1830', 'yyyymmddhh24mi')
order by 2) b
where a.r = b.r;
rs cursnap%rowtype;
s_date varchar2(8);
d_date number;
begin
select to_char(sysdate,'yyyymmdd') into s_date from dual;
--s_date:='20080119';
select to_char(to_date(s_date,'yyyymmdd')-1,'d') into d_date from dual;
if d_date<=5 then
open cursnap(s_date);
loop
fetch cursnap into rs;
exit when cursnap%notfound;
dbms_output.put_line('define begin_snap='||rs.beginid);
dbms_output.put_line('define end_snap='||rs.endid);
dbms_output.put_line('define report_name='||rs.repname);
dbms_output.put_line();
dbms_output.put_line('undefine begin_snap');
dbms_output.put_line('undefine end_snap');
dbms_output.put_line('undefine report_name');
end loop;
close cursnap;
end if;
dbms_output.put_line('exit');
end;
/
spool off;
exit;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7319461/viewspace-998365/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 自動生成ASH報告指令碼指令碼
- AWR報告自動生成指令碼指令碼
- 自動生成awr報告指令碼指令碼
- 一個自動生成oracle job的指令碼Oracle指令碼
- AWR 及STATSPACK的snapshot不能自動生成排查
- awr報告每天自動生成指令碼指令碼
- SQL Server映象自動生成指令碼方法SQLServer指令碼
- 使用shell生成orabbix自動化配置指令碼指令碼
- AWR Report 自動生成指令碼 [final]指令碼
- 一個自動生成awr報告的shell指令碼指令碼
- 用bat指令碼自動生成安裝包InnosetupBAT指令碼
- Python 轉義符以及指令碼自動生成Python指令碼
- shell指令碼實現自動生成awr報告指令碼
- 【AWR】自動生成AWR報告指令碼以及用法指令碼
- Oracle10g 自動生成AWR報告的指令碼Oracle指令碼
- 產生Statspack快照的Shell指令碼指令碼
- apache_weblogic自動生成可執行指令碼ApacheWeb指令碼
- 根據表結構,自動生成匯入指令碼指令碼
- Oracle10g自動生成AWR分析報告的指令碼Oracle指令碼
- Statspack之九-其它重要指令碼指令碼
- 自動ftp,生成control file,sql*load的shell指令碼FTPSQL指令碼
- 自動ftp指令碼FTP指令碼
- 生成insert指令碼的指令碼指令碼
- 「懶惰的美德」我用 python 寫了個自動生成給文件生成索引的指令碼Python索引指令碼
- specjvm自動化指令碼JVM指令碼
- 自動備份指令碼指令碼
- docker指令碼自動化Docker指令碼
- LNMP自動部署指令碼LNMP指令碼
- awr自動收集指令碼指令碼
- 自動化RMAN指令碼指令碼
- AOS 自動生成程式碼(三) Service生成
- 利用shell指令碼生成動態sql指令碼SQL
- Ubuntu自動啟動配置指令碼Ubuntu指令碼
- 網路卡自動啟動指令碼指令碼
- 自動重建失效index的shell指令碼Index指令碼
- 自動配置php、mysql、nginx的指令碼PHPMySqlNginx指令碼
- 一個自動ftp的指令碼(轉)FTP指令碼
- MySQL8.0的自動部署指令碼MySql指令碼