oracle报insufficient shm-object space错误

Scroll Down

现象

报错

Caused by: java.sql.SQLException: ORA-29516: Aurora assertion failure: Assertion failure at joez.c:3311
Bulk load of method java/lang/Object.<init> failed; insufficient shm-object space

解决方案

执行sql

alter system set JAVA_JIT_ENABLED= FALSE scope = both;

查看属性值

show parameter JAVA_JIT_ENABLED;

JAVA_JIT_ENABLED在Oracle中默认为TRUE

BUG:9294055 - GETTING ORA-29516 WHEN JAVA_JIT_ENABLED=TRUE

参考:https://community.oracle.com/tech/developers/discussion/1106718/ora-29516-bulk-load-of-method-failed-insufficient-shm-object-space

https://blog.csdn.net/weixin_32767301/article/details/114595806