I am trying to upgrade Oracle 9i Standard edition to Enterprise edition on a Solaris 9 system. I uninstalled standard and installed the Enterprise edition software only. When it asked me to run root.sh I recieved the following error. root: not found root.sh 06550: not found.
The root.sh file looks like this:
$ more root.sh
#!/bin/sh
if [ -f $ORACLE_HOME/bin/oradism ]; then
$CHOWN root $ORACLE_HOME/bin/oradism
$CHMOD 06550 $ORACLE_HOME/bin/oradism
fi
if [ ! -d /opt/ORCLfmap ];then
$MKDIR /opt/ORCLfmap
fi
if [ ! -d /opt/ORCLfmap/bin ];then
$MKDIR /opt/ORCLfmap/bin
fi
if [ ! -d /opt/ORCLfmap/etc ];then
$MKDIR /opt/ORCLfmap/etc
fi
if [ ! -d /opt/ORCLfmap/log ];then
$MKDIR /opt/ORCLfmap/log
fi
$CP $ORACLE_HOME/bin/fmputl /opt/ORCLfmap/bin
$CP $ORACLE_HOME/bin/fmputlhp /opt/ORCLfmap/bin
$CHMOD 4550 /opt/ORCLfmap/bin/fmputl
$CHMOD 550 /opt/ORCLfmap/bin/fmputlhp
if [ ! -f /opt/ORCLfmap/etc/filemap.ora ];then
$CP $ORACLE_HOME/rdbms/install/filemap.ora /opt/ORCLfmap/etc
fi
How do I fix this ?
Thanks,
Olmos