home *** CD-ROM | disk | FTP | other *** search
- Rem Copyright (c) 1988 by Oracle Corporation
- Rem NAME
- Rem <name>
- Rem FUNCTION
- Rem NOTES
- Rem MODIFIED
- Rem Loaiza 04/04/89 - fix run dates to minutes instead of months
- Rem Martin 02/22/89 - Creation
- Rem Jloaiza 02/23/89 - changed table names, added dates, added param dump
- Rem
- set echo on;
- connect internal;
- drop table stats$begin_stats;
- drop table stats$begin_latch;
- drop table stats$begin_roll;
- drop table stats$begin_file;
- drop table stats$begin_kqrst;
- drop table stats$dual;
- drop table stats$dates;
- drop view stats$file_view;
- create view stats$file_view as
- select ts.name ts,
- i.kcffinam name,
- x.kcfiopyr pyr,
- x.kcfiopyw pyw,
- x.kcfioprt prt,
- x.kcfiopwt pwt,
- x.kcfiopbr pbr,
- x.kcfiopbw pbw
- from x$kcfio x, ts$ ts, x$kcffi i,file$ f
- where i.kcffiidn=f.file#
- and ts.ts#=f.ts#
- and x.kcfiofno=f.file#;
- create table stats$begin_latch as select * from v$latch;
- create table stats$begin_roll as
- select rownum undo#,rssize,gets,waits,writes from v$rollstat;
- create table stats$begin_file as select * from stats$file_view;
- create table stats$begin_kqrst as select * from x$kqrst;
- create table stats$dual (c number);
- insert into stats$dual values(1);
- create table stats$dates (stats_gather_times char(100));
- insert into stats$dates
- select to_char(sysdate, 'dd-mon-yy hh:mi:ss') from stats$dual;
-
- create table stats$begin_stats as select * from v$sysstat;
-
-
-
-
-