[Oracle_Error] PLS-00103 Encountered the symbol "MK_P_PRODUCTIMG" when expecting one of the following: := . ( @ % ; The symbol ":=" was substituted for "MK_P_PRODUCTIMG" to continue.
·
Trouble Shooting(Error)
에러메시지 : PLS-00103 Encountered the symbol "MK_P_PRODUCTIMG" when expecting one of the following: := . ( @ % ; The symbol ":=" was substituted for "MK_P_PRODUCTIMG" to continue. 원인 : 저장프로시저 안에서 저장프로시저를 호출할 때 EXEC 저장프로시저명; 으로 선언하여 프로시저명을 기호로 인식 해결 : EXEC를 빼고 저장프로시명만 선언 BEGIND EXEC MK_P_PRODUCTIMG(seq_mk_product_code.currval, pPATH); END; BEGIND MK_P_PRODUCTIMG(seq_mk_product_code.currval, pPATH); E..