[Error Note] ORA-01861: literal does not match format string [리터럴이 형식 문자열과 일치하지 않습니다]
·
◈ Study/에러노트(Error Note)🧱
- ORA-01861: literal does not match format string [리터럴이 형식 문자열과 일치하지 않습니다] ORA-01861: literal does not match format string → 쿼리의 날짜 형식과 서버의 날짜 형식이 다를 때 발생한다. - ORA-01861 해결 방법
[Error Note] ORA-00911: invalid character [잘못된 문자입니다]
·
◈ Study/에러노트(Error Note)🧱
- ORA-00911: invalid character [잘못된 문자입니다] ORA-00911: invalid character → 쿼리를 날릴 때 쿼리문에 ';'이 포함되어 있으면 발생한다. mybatis로 쿼리문을 날릴 때 세미콜론(;)이 포함되면 발생한다. 쿼리문을 날릴 때는 세미콜론을 꼭 빼줘야 한다! - ORA-00911 해결 방법
[Error Note] ORA-12519: no appropriate service handler found [적절한 서비스 핸들러를 찾을 수 없습니다]
·
◈ Study/에러노트(Error Note)🧱
- ORA-12519: no appropriate service handler found [적절한 서비스 핸들러를 찾을 수 없습니다] ORA-12519: no appropriate service handler found → DB 내의 프로세스가 최대치에 도달할 경우 발생한다. (ORA-12516의 developer 버전 느낌) - ORA-12519 해결 방법 ORA-12516: listener could not find available handler with matching protocol stack[리스너가 일치하는 프로토콜 스택 - ORA-12516: listener could not find available handler with matching protocol stack ORA-12516: l..
[Error Note] ORA-12516: listener could not find available handler with matching protocol stack [리스너가 일치하는 프로토콜 스택이 있는 사용 가능한 핸들러를 찾을 수 없습니다]
·
◈ Study/에러노트(Error Note)🧱
- ORA-12516: listener could not find available handler with matching protocol stack [리스너가 일치하는 프로토콜 스택이 있는 사용 가능한 핸들러를 찾을 수 없습니다] ORA-12516: listener could not find available handler with matching protocol stack → DB에 연결할 수 있는 프로세스의 개수가 최대치에 도달할 경우 발생한다. - ORA-12516 해결 방법 SQLPLUS "/AS SYSDBA" SHOW PARAMETER PROCESSES ALTER SYSTEM SET PROCESSES=1000 SCOPE=SPFILE; SHUTDOWN IMMEDIATE >> SQLPLUS 종료 ..
[Error Note] java.sql.SQLException: 내부 표기로 변환할 수 없습니다
·
◈ Study/에러노트(Error Note)🧱
- java.sql.SQLException: 내부 표기로 변환할 수 없습니다 java.sql.SQLException: 내부 표기로 변환할 수 없습니다 → 쿼리의 행 개수와 바인딩하려는 데이터의 개수가 맞지 않을 때 발생한다. - java.sql.SQLException: 해결 방법