Personal tools
You are here: Home Developer Software Database Oracle Tuning
Document Actions

Oracle Tuning

by Mark Allen last modified 2008-06-02 07:32

The following parameters should be set in order for Oracle to run effectively in a multi user environment.


Database Sessions and Processes

Increase the number of database sessions to 250 and the number of processes to 200.

 
sqlplus /nolog
SQL> show parameters sessions
SQL> alter system set sessions=250 scope=spfile;
SQL> show parameters processes
SQL> alter system set processes=200 scope=spfile;

 
restart the database.

 

 

Powered by Plone CMS, the Open Source Content Management System