(转)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.address order by cpu_time/executions desc;
转自:CodingME!
(转)ORA-12519: TNS:no appropriate service handler found 的问题处理。的更多相关文章
- ORA-12519, TNS:no appropriate service handler found(数据库上当前的连接数目已经超过最大值)
		
报错: ORA-12519, TNS:no appropriate service handler foundThe Connection descriptor used by the client ...
 - 【转载】ORA-12519: TNS:no appropriate service handler found 解决
		
感谢原作者! 原文地址:http://www.cnblogs.com/ungshow/archive/2008/10/16/1312846.html ORA-12519: TNS:no appropr ...
 - ORA-12519,TNS:no appropriate service handler found的问题  超过连接数
		
http://www.2cto.com/database/201205/133542.html 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 ...
 - Oracle   ORA-12519: TNS:no appropriate service handler found 解决
		
有时候连得上数据库,有时候又连不上. 可能是数据库上当前的连接数目已经超过了它能够处理的最大值. select count(*) from v$process --当前的连接数select value ...
 - oracle ORA-12519,TNS:no appropriate service handler found的
		
select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库 ...
 - ORA-12519, TNS:no appropriate service handler found
		
解决问题: 有时候连不上数据库是因为连接数到了极限了. select count(*) from v$process --当前的连接数 130 select value from v$paramete ...
 - ORA-12519: TNS:no appropriate service handler found 解决
		
select count(*) from v$process --当前的连接数select value from v$parameter where name = 'processes' --数据库允 ...
 - oracle错误-ORA-12519, TNS:no appropriate service handler found
		
转自:https://blog.csdn.net/u013147600/article/details/48380841
 
随机推荐
- Inorder Successor in Binary Search Tree
			
Given a binary search tree (See Definition) and a node in it, find the in-order successor of that no ...
 - c++ 操作符重载和友元
			
操作符重载(operator overloading)是C++中的一种多态,C++允许用户自定义函数名称相同但参数列表不同的函数,这被称为函数重载或函数多态.操作符重载函数的格式一般为: operat ...
 - iOS使用webView 加载网页,在模拟器中没有问题,而真机却白屏了。App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist f
			
还在info.plist中配置.除了配置允许上网的配置之外,还有另一项.
 - BZOJ 4516: [Sdoi2016]生成魔咒
			
Description 给出一串数字,求每次插入一个数字后本质不同的子串. Sol SAM. 在 SAM 上添加节点的时候统计一下 \(val[np]-val[par[np]]\) 就可以了... 用 ...
 - windows下的socket网络编程
			
windows下的socket网络编程 windows下的socket网络编程 clinet.c 客户端 server.c 服务器端 UDP通信的实现 代码如下 已经很久没有在windows下编程了, ...
 - Github Bash
			
第一步生成密钥:ssh-keygen -C 'your@email.address' 第二步验证结果:ssh -T git@github.com 第三步克隆:git clone https://git ...
 - faad解码aac
			
// faad2.cpp : 定义控制台应用程序的入口点. #include "stdafx.h" #include <cassert> #include <io ...
 - git branch使用
			
(1) git配置global信息: git config --global user.name "Your Name" git config --global user.emai ...
 - POJ 2388(排序)
			
http://poj.org/problem?id=2388 题意:就N个数的中位数. 思路:用快排就行了.但我没用快排,我自己写了一个堆来做这个题.主要还是因为堆不怎么会,这个拿来练练手. #inc ...
 - 如何让您的php也支持pthreads多线程
			
我们常常会碰到这样一种情况,开发环境在windows下开发,而生产环境确是linux.windows下能正常运行,上传到linux后却无法好好地玩耍了.然后开始了一轮尼玛式的疯狂的查找原因,最后发现是 ...