Notifications
Clear all

How do I solve ORA-12516?

2 Posts
2 Users
0 Likes
752 Views
0
Topic starter

How do I resolve this error:

ORA-12516: TNS:listener could not find available handler with matching protocol stack
1 Answer
0
Topic starter

This can happen if Oracle is not configured with enough processes to handle all the concurrent requests coming from the server. To increase your process count, first login as a "system" user and execute:

show parameter process;

Pay attention to the line with name "processes". You should increase this value. For example, by default in Oracle XE it is 100, which is pretty low. To increase it to 400, you can execute:

alter system set processes=400 scope=spfile;

Then restart the Oracle service. If you reconnect after restart, and rerun show parameter process;, you should see a higher count now.

Matt Nutsch 2019-05-06 13:05:00

This answer was still helpful 5 years later. Thanks!