Oracle数据库当前连接数、最大连接数的查询与设置

时间:2024-04-29 01:27:38

在开发过程中Oracle数据库有时候连得上,有时候又连不上,提示如下异常“ORA-12519: TNS:no appropriate service handler found 解决”,可能是数据库上当前的连接数目已经超过了它能够处理的最大值。

–查看当前的连接数:

select count(*) from v$process;

–数据库允许的最大连接数:

select value from v$parameter where name = ‘processes’;

–修改最大连接数:

alter system set processes = 500 scope = spfile;

–重启数据库:

shutdown immediate;
startup;

–查看当前有哪些用户正在使用数据

SELECT osuser, a.username,cpu_time/executions/1000000||’s’, sql_fulltext,machine
from v$session a, v$sqlarea b where a.sql_address =b.address order by cpu_time/executions desc;

本文转自:http://pihai.me/archives/1080.html#comments