Hi All,
How can I verify if oracle software is installed in a Solaris 8 machine using a Korn Shell script?
It is verifying if the sqlplus tool exists?
Example:
if [ -r $ORACLE_HOME/bin/sqlplus ]
then
echo "Oracle software installed."
exit 0
else
echo "Oracle software not installed."
Exit 1
fi
How can I get the oracle software version without using the sqlplus and the V$VERSION view?
Thanks and Regards
