Get oracle version number in linux shell script
below command will provide you the version number as output
just make sure that your ORACLE_HOME path is set in ~/.base_profile file.
you can check it by
echo $ORACLE_HOME
echo $ORACLE_HOME | awk -F "/product/" '{print $2}' | cut -d'/' -f1
below command will provide you the version number as output
just make sure that your ORACLE_HOME path is set in ~/.base_profile file.
you can check it by
echo $ORACLE_HOME
echo $ORACLE_HOME | awk -F "/product/" '{print $2}' | cut -d'/' -f1
No comments:
Post a Comment