📚 [ORACLE] ORA-12162: TNS:net service name is incorrectly specified
Category: Oracle | 📅 June 08, 2018
사용자 계정에 ORACLE_SID가 없어서 발생하는 에러.
vim 으로 .profile 등록
Centos인 경우는 .bash_profile
$vim ~/.profile
export ORACLE_SID=orcl
orcl이 아닌 경우는 알아서 쓸 것.
적용하기
$source ~/.profile
$echo $ORACLE_SID
# 터미널에서 사용하는 경우
$export ORACLE_SID=orcl