Where are java classes stored in Oracle?

后端 未结 2 1277
鱼传尺愫
鱼传尺愫 2021-01-05 02:19

Where is the java bytecode for loaded java classes stored within an oracle database? Specifically, is there a view or table I can use to obtain the raw bytes for java class

2条回答
  •  自闭症患者
    2021-01-05 03:01

    Java bytecode stored in IDL_UB1$ table:

    select o.NAME, i.PIECE 
    from obj$ o, IDL_UB1$ i 
    where o.type# = 29 
        and o.obj# = i.obj#
    

提交回复
热议问题