博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle查看允许的最大连接数和当前连接数等信息
阅读量:5305 次
发布时间:2019-06-14

本文共 1259 字,大约阅读时间需要 4 分钟。

   

 目前总结的语句,在查看数据的连接情况很有用 ,写完程序一边测试代码一边查看数据库连接的释放情况有助于分析优化出一个健壮的系统程序来。

1.

Sql代码
1.select count(*) from v$process  
select count(*) from v$process --当前的数据库连接数

2.

Sql代码
1.select value from v$parameter where name = 'processes' 
select value from v$parameter where name = 'processes'--数据库允许的最大连接数

3.

Sql代码
1.alter system set processes = 300 scope = spfile; 
alter system set processes = 300 scope = spfile;--修改最大连接数:

4.

Sql代码
1.shutdown immediate;  
2.startup; 
shutdown immediate;
startup;--重启数据库

5.

Sql代码
1.SELECT osuser, a.username,cpu_time/executions/1000000||'s', b.sql_text,machine   
2.from v$session a, v$sqlarea b  
3.where a.sql_address =b.address order by cpu_time/executions desc; 
SELECT osuser, a.username,cpu_time/executions/1000000||'s', b.sql_text,machine
from v$session a, v$sqlarea b
where a.sql_address =b.address order by cpu_time/executions desc;
--查看当前有哪些用户正在使用数据

6.

Sql代码
1.select count(*) from v$session  
select count(*) from v$session   --当前的session连接数

7.

Sql代码
1.select count(*) from v$session where status='ACTIVE' 
select count(*) from v$session where status='ACTIVE' --并发连接数

8.

Sql代码
1.show parameter processes  
show parameter processes   --最大连接

9.

Sql代码
1.alter system set processes = value scope = spfile; 

 

转载于:https://www.cnblogs.com/lcword/p/8228495.html

你可能感兴趣的文章
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
论三星输入法的好坏
查看>>
Linux 终端连接工具 XShell v6.0.01 企业便携版
查看>>
JS写一个简单日历
查看>>
LCA的两种求法
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>
全面分析Java的垃圾回收机制2
查看>>
[Code Festival 2017 qual A] C: Palindromic Matrix
查看>>
修改博客园css样式
查看>>
Python3 高阶函数
查看>>
初始面向对象
查看>>
docker一键安装
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
ALS算法 (面试准备)
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
7.5 文件操作
查看>>