SQL developer 실행시 jvm.dll 오류 발생 조치 방법
2013.01.23 01:39
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
java가 포함된 SQL developer 버전을 다운받고 압축만 해제하여 사용하면
굳이 PC에 java를 설치하지 않아도 SQL Developer를 사용할 수 있다.
만약 실행시 jvm.dll 에러가 발생한다면 java heap 메모리가 부족하기 때문.
설치위치/ide/bin/ide.conf 파일에서 다음과 같이
AddVMOption -Xmx640M
Default 값 640M으로 되어있는 부분을 줄여준다. 512M, 256M 등으로 순차적으로 줄여보면 된다.
#
# If you are getting the 'Low Memory Warning' Message Dialog while running
# JDeveloper, please increase the -Xmx value below from the default 768M to
# something greater, like 1024M or 1250M. If after increasing the value,
# JDeveloper is no longer starting up because it fails to create a virtual
# machine, then please reduce the modified -Xmx value.
#
AddVMOption -Xmx256M
#AddVMOption -Xmx640M
#AddVMOption -Xms128M