查看session io

select b.username, a.*
  from v$sess_io a, v$session b
 where a.sid in
       (select x.sid
          from v$session x
         where x.status = 'ACTIVE'
           and x.PADDR not in (select paddr from v$bgprocess))
   and a.sid = b.sid
   and username is not null
   and username <> 'SYS'

posted on 2011-11-15 22:12  czjie  阅读(236)  评论(0编辑  收藏  举报

导航