본문 바로가기
DATABASE/DB study

sql developer 접속할 때 생기는 에러

by 개폰지밥 2019. 2. 7.
반응형

- 개요: 새로 만들기/데이터베이스 접속 선택시 에러발생

 

- 에러: listener refused the connection with the following error:ora-12505, tns:listener does not currently know of SID given in connect descriptor

 

- 해석: 리스너가 다음 오류로 연결을 거부했습니다. ora-12505, tns : listener는 현재 연결 설명자에 지정된 SID를 알지 못합니다.

 

 

- 해결: 올바른 SID 변경

* 올바른 SID 확인하는 방법

lsnrctl services 명령어를 입력해서 SID를 확인합니다.

저는 seulgioracle이네요.

테스트 -> 접속 해줍니다.

 

-개요: 새로운 연결 정보 생성하는 중에 CREATE SESSION privilege; logon denied가 뜸

- 에러: ora-01045: user dream lacks create session privilege; logon denied

 
- 해석: ora-01045 : 사용자 dream에 세션 생성 권한이 없습니다. 로그온 거부 됨
 
- 해결: dream에 권한 주기
grant dba to dream;

 

 

- 개요: 생성한 사용자 계정에서 set serveroutput on 명령어 실행 시 에러

- 에러: 

오류 보고 -

ORA-29532: 자바 호출이 잡혀지지 않은 자바 예외로 인해 종료되었습니다: oracle.aurora.vm.IdNotFoundException: dream : user or role id does not exist

ORA-06512: "SYS.DBMS_JAVA",  793행

ORA-06512:  11행

29532. 00000 -  "Java call terminated by uncaught Java exception: %s"

*Cause:    A Java exception or error was signaled and could not be

           resolved by the Java code.

*Action:   Modify Java code, if this behavior is not intended.

 

- 에러 해결: 권한주기( connect, resource, dba)

그래도 에러 해결이 안될 경우에 생성한 사용자 계정을 대문자로 입력한다.

 

 

 

반응형

댓글