home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 22.ddi / BSTAT.SQL < prev    next >
Encoding:
Text File  |  1989-04-04  |  1.5 KB  |  50 lines

  1. Rem Copyright (c) 1988 by Oracle Corporation
  2. Rem NAME
  3. Rem    <name>
  4. Rem  FUNCTION
  5. Rem  NOTES
  6. Rem  MODIFIED
  7. Rem   Loaiza     04/04/89 - fix run dates to minutes instead of months
  8. Rem   Martin     02/22/89 - Creation
  9. Rem   Jloaiza    02/23/89 - changed table names, added dates, added param dump
  10. Rem
  11. set echo on;
  12. connect internal;
  13. drop table stats$begin_stats;
  14. drop table stats$begin_latch;
  15. drop table stats$begin_roll;
  16. drop table stats$begin_file;
  17. drop table stats$begin_kqrst;
  18. drop table stats$dual;
  19. drop table stats$dates;
  20. drop view stats$file_view;
  21. create view stats$file_view as
  22.   select ts.name    ts,
  23.          i.kcffinam name,
  24.          x.kcfiopyr pyr,
  25.          x.kcfiopyw pyw,
  26.          x.kcfioprt prt,
  27.          x.kcfiopwt pwt,
  28.          x.kcfiopbr pbr,
  29.          x.kcfiopbw pbw
  30.   from x$kcfio x, ts$ ts, x$kcffi i,file$ f
  31.  where i.kcffiidn=f.file#
  32.    and ts.ts#=f.ts#
  33.    and x.kcfiofno=f.file#;
  34. create table stats$begin_latch as select * from v$latch;
  35. create table stats$begin_roll as 
  36.     select rownum undo#,rssize,gets,waits,writes from v$rollstat;
  37. create table stats$begin_file as select * from stats$file_view;
  38. create table stats$begin_kqrst as select * from x$kqrst;
  39. create table stats$dual (c number);
  40. insert into stats$dual values(1);
  41. create table stats$dates (stats_gather_times char(100));
  42. insert into stats$dates 
  43.    select to_char(sysdate, 'dd-mon-yy hh:mi:ss') from stats$dual;
  44.  
  45. create table stats$begin_stats as select * from v$sysstat;
  46.  
  47.  
  48.  
  49.  
  50.