Skip to content

Instantly share code, notes, and snippets.

@rponte
Created September 5, 2010 22:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rponte/566366 to your computer and use it in GitHub Desktop.
Save rponte/566366 to your computer and use it in GitHub Desktop.
Increasing Processes, Sessions and Transactions in Oracle XE
-- Tendo problemas com "ORA-12519, TNS:no appropriate service handler found"?
-- dica: http://en.newinstance.it/2007/06/01/ora-12519-tnsno-appropriate-service-handler-found/
-- Basta rodar este comando e reiniciar o listener (OracleXETNSListener):
ALTER SYSTEM SET PROCESSES=150 SCOPE=SPFILE;
select name, value
from v$parameter
where name in ('processes', 'sessions', 'transactions');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment