생계/OERR
ORA-24962 connect string could not be parsed
돌고래트레이너
2023. 1. 30. 23:24
[oracle@asmtest ~]$ oerr ora 24962
24962, 00000, "connect string could not be parsed, error = %s"
// *Cause: The address portion of the connect string could not be parsed.
// The client may be using a format of the connect string that the
// server does not understand.
// *Action: Correct the connect string.
[oracle@asmtest ~]$
jdbc 로 db 에 접속하려고 할때 connect string 에 잘못된 특수문자가 있으면 발생하는 오류
예를 들면 아래형태로 디비에 접속하는데 괄호를 실수로 닫지 않는 등의 문제
jdbc.dbalias.oracle-thin=@(description=(address=(host=orahost)(protocol=tcp)(port=1521))(connect_data=(service_name=orcl)))
클라이언트 쪽이 둔한 사람이면 에러가 나는 지도 모르고 있을 확률이 높다.
was 쪽 담당자에게 해당 에러를 알려주자
반응형