home *** CD-ROM | disk | FTP | other *** search
/ Oracle Video Server 3.0.3.1 / OVS_3031_NT.iso / win32 / tracesvr / otrcrpt3.sql < prev    next >
Encoding:
Text File  |  1997-01-21  |  321 b   |  9 lines

  1. rem Frequency of logical transactions ending per second
  2.  
  3. select to_char(t.timestamp_end, 'DD-MON-YY HH24:MI:SS') "Interval",
  4.        count(*) "Frequency"
  5. from v_192216243_f_5_e_11_7_3 t, epc_collection c
  6. where c.collection_name = '&&cllctn' and 
  7.       c.collection_id = t.collection_number
  8. group by timestamp_end;
  9.