日期:2014-05-16 浏览次数:20583 次
windows系统 Oracle 数据库连接数的修改
?
以下操作需要登录dba才能操作:C:\>sqlplus / as sysdba
?
1. 查看processes和sessions参数
SQL> show parameter processes
SQL> show parameter sessions
?
2. 修改processes和sessions值
SQL> alter system set processes=300 scope=spfile;
SQL> alter system set sessions=335 scope=spfile;
?
3. 修改processes和sessions值必须重启oracle服务才能生效
ORACLE的连接数(sessions)与其参数文件中的进程数(process)有关,它们的关系如下:
sessions=(1.1*process+5)
????? 重启数据库:
shutdown immediate; startup;
?
?
4.其他查询
查询数据库当前进程的连接数:select count(*) from v$process;
查看数据库当前会话的连接数:select count(*) from v$session;
查看数据库的并发连接数:select count(*) from v$session where status='ACTIVE';
查看当前数据库建立的会话情况:select sid,serial#,username,program,machine,status from v$session;
????? 查询数据库允许的最大连接数:select value from v$parameter where name = 'processes';
??????????? 或者:show parameter processes;
查看当前有哪些用户正在使用数据:
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;
?
备注:UNIX 1个用户session对应一个操作系统process,而Windows体现在线程。
?
?
?
oracle报错时可修改processes和sessions,以下是错误信息:
OERR: ORA-12519 TNS:no appropriate service handler found
客户端连接间歇性失败,报错ORA-12519
Cause: the listener could not find any available service handlers that are?
?????? appropriate for the client connection.
?