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 answers

1
Arkadiusz Łukasiewicz On

For java class.

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