|
|
Re: Starting and Stopping Database using a script [message #314113 is a reply to message #312674] |
Tue, 15 April 2008 15:51 |
rucknrun
Messages: 26 Registered: April 2005 Location: Edgewood, MD
|
Junior Member |
|
|
The script we use in solaris 9 has section like below to start the infrastructure database.
echo "******** This script starts the necessary 10g Infrastructure Components ********"
echo
echo
echo
echo "***** Startup Infrastructure database, login as 'sys as sysdba'...*****"
sqlplus /nolog <<EOF
connect / as sysdba
startup
EOF
echo
echo
echo
|
|
|