读书人

联接oracle 报 ORA-12519

发布时间: 2012-07-20 10:38:30 作者: rapoo

连接oracle 报 ORA-12519

?

??????? with the listener, and are accepting connections. 检查lsnrctl service ,instance已经注册,
?状态显示ready时,可以连接。

When the listener believes the current number of connections has reached maximum load,?
it may set the state of the service handler for an instance to "blocked" and begin refusing?
incoming client connections with either of the following errors: ora-12519 or ora-12516

采用服务动态注册的方式,由PMON 通过SERVICE_UPDATE 来得到目前连接情况,但SERVICE_UPDATE 有时间间隔,
所以,listener显示的连接数和当前实际的连接数可能不同。


查询解决方法:

查看一下数据库现有的进程数,是否已经达到参数processes的大小。

1.select count(*) from v$process;???????????????????????? 取得数据库目前的进程数。
2.select value from v$parameter where name = 'processes'; 取得进程数的上限。
3.如已达到上限,修改initSID.ora中的processes的大小。
4.重新启动数据库到nomount状态下,执行create spfile from pfile; 并startup open。


查询数据库自启动以来最大的并发数量

select * from v$license

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wyzxg/archive/2008/03/06/2154274.aspx

?

?

ORA-12519: TNS:no appropriate service handler found解法?url:http://tsaijemmy.spaces.live.com/blog/cns!4AD532D0CD18A21D!680.entry?ORA-12519: TNS:no appropriate service handler found解法 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 = 300 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. 完,是在C3P0遇到的,另篇文章查到,上面的是由於Oracle Express 10g的配置接只有20,而在hibernate.cfg.xml配置使用c3p0接池的最大接超了料允的量,因此但繁的去接料的候,法得接,料Listner就直接拒接的求,因此只要修改c3p0接池最大最小接。c3p0可以置如下: <property name="hibernate.c3p0.min_size">5</property> <property name="hibernate.c3p0.max_size">10</property> 了,在系上前就要估算有多少用使用DB,而每用使用多少connection,和不能超Oracle配置的(看DB得Oracle多少授connection),看Project的Architecture也得注意一

ITPUB上的一则讨论 :?http://www.itpub.net/thread-624935-1-1.html

oravis@ebs oravis]$ sqlplus

SQL*Plus: Release 9.2.0.3.0 - Production on Mon Sep 4 14:47:00 2006

Copyright (c) 1982, 2002, Oracle Corporation.??All rights reserved.

Enter user-name: sys as sysdba
Enter password:

Connected to:
Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.3.0 - Production

SQL> select status from v$instance;

STATUS
------------
OPEN

读书人网 >其他数据库

热点推荐