每次执行sqlplus都要配置oracle环境变量(ORACLE_SID, ORACLE_HOME, PATH),出现了两个令自己很费解的error。在shell里,设置这三个变量不需要export,直接写就好了,后来就出现了下面的两个错误。
1,ORACLE_SID=eoss
ERROR
ORA-07217: sltln: environment variable cannot be evaluated.
export ORACLE_SID
需要改成:export ORACLE_SID=aoss
2,OACLE_HOME=/app/aoss/aossdb/9.2.0
Error 6 initializing SQL*Plus
Message file sp1.msb not found
SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
export OACLE_HOME
需要改成:export OACLE_HOME=/app/aoss/aossdb/9.2.0
阅读(1189) | 评论(0) | 转发(0) |