default is 49
how to edit to higher?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will need to issue the following command (connected as a user that has alter system privileges, sys will do it)
alter system set sessions=numberofsessions scope=spfile;
Have you been getting an ORA-12516 or ORA-12520 error? If so it’s probably a good idea to increase the number of processes too
alter system set processes=numberofprocesses scope=spfile;
IIRC you’ll need to bounce the database after issuing these commands. This link http://www.oracle.com/technology/tech/php/pdf/underground-php-oracle-manual.pdf has some good information about configuring XE. I consulted it when I ran into similar issues using XE.