- 论坛徽章:
- 0
|
请教4楼,
dbstart 如何设变量
# vi dbstart
"dbstart" 354 lines, 10415 characters
:
#
# $Id: dbstart.sh.pp 11-may-2005.18:18:07 vikrkuma Exp $
# Copyright (c) 1991, 2005, Oracle. All rights reserved.
#
###################################
#
# usage: dbstart
#
# This script is used to start ORACLE from /etc/rc(.local).
# It should ONLY be executed as part of the system boot procedure.
#
# This script will start all databases listed in the oratab file
# whose third field is a "Y". If the third field is set to "Y" and
# there is no ORACLE_SID for an entry (the first field is a *),
# then this script will ignore that entry.
#
# This script requires that ASM ORACLE_SID's start with a +, and
# that non-ASM instance ORACLE_SID's do not start with a +.
#
# If ASM instances are to be started with this script, it cannot
# be used inside an rc*.d directory, and should be invoked from
? ORACLE_HOME_LISTNER
if [ $VER10LIST ] ; then
VER10INST=`sqlplus -V | grep "Release " | cut -d' ' -f3 | cut -d'.' -f1`
case $VER10INST in
"10")
if [ $VER10LIST != "10" ] ; then
$LOGMSG "Warning: Version 10 listener is required for Oracle Database 10
g"
$LOGMSG "Version $VER10LIST for Listener is NOT supported with Database
version $VER10INST"
$LOGMSG "Restart Oracle Net Listener using an alternate ORACLE_HOME_LIST
NER: lsnrctl start"
fi
;;
*) ;;
esac
fi
}
# Starts a Database Instance
startinst() {
# Called programs use same database ID
export ORACLE_SID
怎么改变量,谢谢 |
|