User`s guide

Starting Oracle Utilities in UNIX-Style
1-4 Oracle Database User's Guide
/START-EXECUTABLE ($ORAC1120.ORALOAD.LIB,program_name)
For example, if you want to start SQL*Plus, then enter the command:
/START-EXECUTABLE ($ORAC1120.ORALOAD.LIB,SQLPLUS)
1.4 Starting Oracle Utilities in UNIX-Style
You can also start the utilities with the following commands:
/START-ORACLE-CMMIGR or /CMMIGR
/START-ORACLE-EXPORT or /OEXP
/START-ORACLE-EXPDP or /EXPDP
/START-ORACLE-IMPORT or /OIMP
/START-ORACLE-IMPDP or /IMPDP
/START-ORACLE-LISTENER-CONTROL or /LSNRCTL
/START-ORACLE-MKWALLET or /MKWALLET
/START-ORACLE-SQLLOADER or /SQLLDR
/START-ORACLE-SQLPLUS or /SQLPLUS
/START-ORACLE-TNSPING or /TNSPING
/START-ORACLE-RMAN or /RMAN
Parameters can be specified after the start command (in quotation marks, if the
parameters contains equal to (=) or blanks). Before you start the utility, activate the
MOD-SDF
command in the
ORAENV
file and call the
ORAENV
file.
Example:
/sqlplus
/lsnrctl stop
/oimp 'system/manager file=iea buffer=210000 ignore=y grants=y rows=y
full=y commit=y'
1.5 Starting Oracle Utilities in the POSIX environment
Starting with Oracle Database 11g Release 2 on Fujitsu BS2000/OSD, you can run
utilities like SQL*Plus not only in the normal BS2000 environment, but also in the
POSIX environment.
During the installation of the Oracle Database software the utilities are installed within
the POSIX file system in the directory
oracle_home_path/bin
. Before starting Oracle
utilities in the POSIX shell, you must set the environment variable
ORACLE_HOME
and
extend the environment variable
PATH
by the pathname of the Oracle directory
oracle_home_path/bin
. For example:
$ ORACLE_HOME=/u01/app/orac1120/product/dbhome
$ export ORACLE_HOME
$ PATH=$ORACLE_HOME/bin:$PATH
$ export PATH
Alternatively you can execute the profile
oracle_home_path/.profile.oracle
that is
created during the installation of the Oracle Database software under POSIX. This
profile sets and expands the most important variables like
ORACLE_HOME
and
PATH
.
Execute the profile as follows:
$ . /u01/app/orac1120/product/dbhome/.profile.oracle