docker-oracle-ee-11g icon indicating copy to clipboard operation
docker-oracle-ee-11g copied to clipboard

insufficient shm-object space

Open abusquets opened this issue 7 years ago • 0 comments

I have a problem working with geometries For example when I execute this sql SELECT SDO_GEOMETRY('POINT(497311 4678860)', 25831) FROM dual; I get this error Bulk load of method java/lang/reflect/Field. failed; insufficient shm-object space

I found some possible solutions, one of them is related about /etc/fstab file, but there isn't a fstab file in the container.

My run docker command is:

docker run -d -p 8080:8080 -p 1521:1521 --name dockerDB -v OracleDBData:/u01/app/oracle -e DBCA_TOTAL_MEMORY=8024 --shm-size 8g sath89/oracle-ee-11g

SQL> SELECT SDO_GEOMETRY('POINT(497311 4678860)', 25831) FROM dual; SELECT SDO_GEOMETRY('POINT(497311 4678860)', 25831) FROM dual * ERROR at line 1: ORA-29516: Aurora assertion failure: Assertion failure at joez.c:3311 Bulk load of method java/lang/Object. failed; insufficient shm-object space ORA-06512: at "MDSYS.SDO_UTIL", line 187 ORA-06512: at "MDSYS.SDO_GEOMETRY", line 76 ORA-06512: at line 1

abusquets avatar Nov 17 '18 12:11 abusquets