Oracle中如何評估真正的並發session

來源:互聯網
上載者:User

Oracle中如何評估真正的並發session

在Oracle中可以通過dba_hist_active_sess_history視圖查看並發的會話,可以通過以下指令碼查詢出每個使用者最大並發,當前的串連數,及profile限制的最大串連數等。

SELECT AA.USERNAME, AA.MT, BB.CNT, CC.LIMIT, AA.MN, AA.AG
  FROM (select username, max(cnt) MT, min(cnt) MN, avg(cnt) AG
          from (select username, snap_id, count(1) cnt
                  from dba_hist_active_sess_history a, dba_users b
                  where --user_id = 65
                -- sample_time >= to_date('2014-06-27', 'yyyy-mm-dd')
                --and sample_time < to_date('2014-10-29', 'yyyy-mm-dd')
                ----and snap_id>=37306 and snap_id < 37401
                --snap_id>=36062 and snap_id < 38073  285240710
                  a.user_id = b.user_id
                  group by username, snap_id)
          group by username) AA,
        (SELECT USERNAME, COUNT(1) CNT FROM V$SESSION GROUP BY USERNAME) BB,
        (SELECT B.USERNAME, A.LIMIT
          FROM dba_profiles A, DBA_USERS B
          WHERE A.PROFILE = B.PROFILE
            and b.account_status = 'OPEN'
            AND A.resource_name = 'SESSIONS_PER_USER') CC
  WHERE AA.USERNAME = BB.USERNAME
    AND BB.USERNAME = CC.USERNAME;

結果如下:

USERNAME  MT  CNT  LIMIT  MN  AG 
APP_user1  14  100  100  1  1.790323 
APP_user2  6  100  100  1  1.571429 
APP_user3  3  100  100  1  1.328125 
APP_user4  6  100  100  1  1.425532 
APP_user5  6  100  100  1  1.753846 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.