在Linux 启动时自动启动Oracle 10g多个实例数据库的方法:
# description: start or stop oracle
. /etc/rc.d/init.d/functions
#oracle_env
export ORACLE_BASE=/u01/app/oracle/db10g
export ORACLE_HOME=$ORACLE_BASE/db10g
export PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_SID=twerp
oracle_user=oracle
#killproc
start(){
echo -n "starting oracle: "
su - "$oracle_user"