Determine if 11g ORACLE_HOME is standard or enterprise edition without db
Without a database installed or ruuning on the server how can i determine what type of oracle software is installed standard or enterprise edition. I need to determine what type of install it is and from that i can determine what db to install throug a shell script.
I came across this thread to look into the context.xml file under s_serverInstallType but that setting is not in 11gr2 version.
grep -w s_serverInstallType $ORACLE_HOME/inventory/Components21/oracle.server/*/context.xml | tr ' ' '\n' | grep VAL
Does anyone know any other ways of getting this info.
Thanks