사건발생은 Oracle SQL Developer에 쿼리문 작성을 하는데요.
옵션은 이러합니다.
TABLE NAME = XMAN
COLUM = NO, TITLE(NVARCHAR2 100) , NAME(NVARCHAR2 100)이라고 가정하겠습니다. (*사실 이미지삽입 어떻게하는지 모르겠듬)
쿼리문 작성할 때 ,
SELECT * FROM XMAN WHERE TITLE LIKE '%보%';
형식으로 작성하겠습니다.
여기서,'%보%' 여기 해당하는 란에, 다른 단어가 들어가면 이상없이 잘 실행이 되고요, '%보석%' 이렇게 적어도 이상없이
실행이 됩니다. 하지만 '%석보%' 이런식으로 '보'로 끝나게 되면 무섭게 에러가 발생하는데 혹시 원인을 알 수 있을까요..
Oracle SQL Developer가 내뱉는 에러코드입니다.
This is the generic internal error number for Oracle program
exceptions. It indicates that a process has encountered a low-level,
unexpected condition. The first argument is the internal message
number. This argument and the database version number are critical in
identifying the root cause and the potential impact to your system.
혹시 이와같은 오류 해결해보신분이나 원인을 아시는분 계신가요...도와주세용
|