查看“Oracle最大连接数查看及修改”的源代码
←
Oracle最大连接数查看及修改
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
<pre> SQL: 1. 查看当前的数据库连接数 select count(*) fromv$process select count(*) from v$process where program=‘Oracle.EXE(SHAD)’; 2. 查看数据库允许的最大连接数 select value from v$parameter where name ='processes' 3. 查看当前有哪些用户正在使用数据 SELECT osuser, a.username,cpu_time/executions/1000000||'s',b.sql_text,machine from v$session a, v$sqlareab where a.sql_address =b.address order by cpu_time/executionsdesc; 4. 查看当前的session连接数 select count(*) fromv$session 5. 查看并发连接数 select count(*) from v$session where status='ACTIVE' 命令: 1. 查看最大连接数 show parameter processes 2. 修改最大连接数 我们用了这个 并重启oracle 201811 alter system set processes = 300 scope = spfile; 3. 重启数据库 shutdown immediate; startup; </pre> [https://blog.csdn.net/hongweigg/article/details/61919723 ORACLE 查看当前连接数、修改最大连接数相关SQL] [http://st4024589553.iteye.com/blog/2367373 oracle 查看最大连接数和当前连接数,查看当前有哪些用户正在使用数据] [[category:oracle]]
返回至
Oracle最大连接数查看及修改
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息