06 2022 档案
摘要:1. 当前连接会话数以及当前并发连接个数 -- 当前活跃用户会话数Select count(*) from v$session where status='ACTIVE' and USERNAME is not null;-- 当前活跃系统会话数Select count(*) from v$sess
阅读全文
摘要:现状: 业务系统经常出现卡死,宕机的情况,但是具体查看服务器硬件资源都显示正常,无法判断问题出在哪里。 后思考,可能是orcl实例的内存资源有限,造成资源跑满,所以进行尝试更改系统内存资源操作。 1、服务器环境 winserver 2012 ;oracle 11G 2、具体更改步骤: 登陆服务器,找
阅读全文
摘要:首先用系统账户登录 select * from v$session where username is not null select username,count(username) from v$session where username is not null group by userna
阅读全文