Oracle 19cのsqlplusコマンドが見つからない対策

2021年10月27日

エラーメッセージ
$ sqlplus / as sysdba
bash: sqlplus: コマンドが見つかりませんでした..

対策
$ vi ~/.bash_profile
下記の内容を追記
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/19.0.0/dbhome_1
export NLS_LANG=Japanese_Japan.AL32UTF8

export PATH=$ORACLE_HOME/bin:$PATH

$ source ~/.bash_profile

Oracle 19c

Posted by arkgame