Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 284 Bytes

get-oracle-sessions.md

File metadata and controls

9 lines (8 loc) · 284 Bytes

Get Oracle sessions in

select sample_time, count(*)
  from pt_session ash
 where ash.sample_time between to_date('2021/11/17 13:50:00', 'yyyy/mm/dd hh24:mi:ss') and to_date('2021/11/17 23:10:00', 'yyyy/mm/dd hh24:mi:ss')
 group by sample_time
 order by sample_time;