18.3 ENVIRONMENT VARIABLES During database installation and session startup, the environment variables tell the database where to find important information and define system parameters required for database operations. The environment variables follow the version of the database and are subject to change.18.3.1 User Environment The variables are defined by the user before database installation in the root users and oracle users profiles located in the user's home directory. The list below shows the common variables set for the OpenView database:ORACLE_TERM Preferred terminal typeORACLE_BASE Path for Oracle dataORACLE_HOME Location of Oracle softwareORACLE_SID Instance nameNLS_LANG Character setSHLIB_PATH Path to shared librariesPATH Path includes Oracle binariesAn example listing from the root users profile is shown here:export ORACLE_BASE=/opt/oracle export ORACLE_HOME=$ORACLE_BASE/product/9.2.0 export ORACLE_SID=openview export ORACLE_TERM=ansi export SHLIB_PATH=$ORACLE_HOME/lib32 export NLS_LANG=american_america.WE8ISO8859P15 export PATH=$PATH:$ORACLE_HOME/bin
|