Extract loaded jar into oracle database

856 Views Asked by At

There is a jar that was loaded into an oracle database using loadjava command. Is there a way to extract this jar(or the classes) loaded into the database. The database version is 11g.

1

There are 1 best solutions below

1
Arkadiusz Łukasiewicz On

For java class.

select dbms_metadata.get_ddl('JAVA_SOURCE','class_name') from dual;