Any attempt to access a field in Oracle that contains an Oracle object or object reference may trigger a SIGSEGV and terminate the session.
Avoid operations that reference objects. For example, if table MYTABLE contains columns C1, C2, and C3, and C2 refers to objects, rather than execute "SELECT * FROM MYTABLE" instead explicitly mention the columns C1 and C3 and skip C2: "SELECT C1, C3 FROM MYTABLE".
Last updated: 10/2/23