what is the meaning of 活动状态?
anyway you can check v$session , v$sess_io etc

解决方案 »

  1.   

    here is a sql to check the io status of each sessionselect Username,
     OSUSER,
     Consistent_Gets,
     Block_Gets,
     Physical_Reads,
     100*( Consistent_Gets + Block_Gets - Physical_Reads)/
         ( Consistent_Gets + Block_Gets ) "Hit Ratio %"
    from  V$SESSION,V$SESS_IO
    where V$SESSION.SID = V$SESS_IO.SID
    and   ( Consistent_Gets + Block_Gets )>0
    and   username is not null
    order by Username,"Hit Ratio %";
      

  2.   

    呵,问题没问太明白了
    怎么查看是当前是 nomount,mount还是open状态