Oracle7 Server Concepts

Contents Index Home Previous Next

Parameter Files

To start an instance, Oracle must read a parameter file.A parameter file is a text file containing a list of instance configuration parameters. You set these parameters to particular values and to initialize many of the memory and process settings of an Oracle instance. Among other things, the parameters of this file tell Oracle the following:

An Example of a Parameter File

The following is an example of a typical parameter file:

db_block_buffers = 550 
db_name = ORA7PROD 
db_domain = US.ACME.COM 
# 
license_max_users = 64 
# 
control_files = filename1, filename2 
# 
log_archive_dest = c:\logarch 
log_archive_format = arch%S.ora 
log_archive_start = TRUE 
log_buffer = 64512 
log_checkpoint_interval = 256000 
# rollback_segments = rs_one, rs_two 

Oracle treats string literals defined for National Language Support (NLS) parameters in the file as if they are in the database character set.

Most parameters belong to one of the following groups:

Changing Parameter Values

The database administrator can adjust variable parameters to improve the performance of a database system. Exactly which parameters most affect a system is a function of numerous database characteristics and variables.


Contents Index Home Previous Next