Blogs >> Technology >>
Autoconfig fails on DB tier after 11G upgrade. SP2-1503: Unable to initialize Oracle call interface
Autoconfig On Db Tier Fails With Error - SP2-1503: Unable to initialize Oracle call interface
The $ORACLE_HOME/appsutil/template/ad8idbux.env is from the wrong version (ad8idbux.env 120.8) The wrong file includes the following: ORA_TZFILE="$ORACLE_HOME/oracore/zoneinfo/timezlrg.dat"
export ORA_TZFILE
While for 11gr2 it should be:
if test "%s_database%" = "db112" ; then
ORA_TZFILE=""
else
ORA_TZFILE="$ORACLE_HOME/oracore/zoneinfo/timezlrg.dat"
fi
export ORA_TZFILE
|