ORA-12519: TNS:no appropriate service handler found 解决

 

  
  
  
  
  1. ORA-12519, TNS:no appropriate service handler found  
  2. The Connection descriptor used by the client was:  
  3. 192.168.1.200:1521:orcl  
  4. 问题解决:  
  5. select count(*) from v$process --当前的连接数  
  6. select value from v$parameter where name = 'processes' --数据库允许的最大连接数  
  7.  
  8. 修改最大连接数:  
  9. alter system set processes = 300 scope = spfile;  
  10.  
  11. 重启数据库:  
  12. shutdown immediate;  
  13. startup;  
  14.  
  15. --查看当前有哪些用户正在使用数据  
  16. SELECT osuser, a.username,cpu_time/executions/1000000||'s', sql_fulltext,machine   
  17. from v$session a, v$sqlarea b  
  18. where a.sql_address =b.address order by cpu_time/executions desc

 

你可能感兴趣的:(数据库,职场,休闲)