oracleinternals

Where are java classes stored in Oracle?

久未见 提交于 2019-12-01 03:50:11
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 schema objects within Oracle? If you have used CREATE JAVA SOURCE command to load the Java Source into the Oracle database then you can go to the data dictionary view USER_SOURCE and find your Java Source. If you need to display it or something, you can check out DBMS_JAVA.EXPORT_SOURCE which puts the source code in PL/SQL structures that you can manipulate. Generally, if you want to just list all Java related stored

Where are java classes stored in Oracle?

情到浓时终转凉″ 提交于 2019-12-01 00:46:27
问题 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 schema objects within Oracle? 回答1: If you have used CREATE JAVA SOURCE command to load the Java Source into the Oracle database then you can go to the data dictionary view USER_SOURCE and find your Java Source. If you need to display it or something, you can check out DBMS_JAVA.EXPORT_SOURCE which puts the source code in

Hidden features in Oracle

不打扰是莪最后的温柔 提交于 2019-11-27 17:10:59
I enjoyed the answers and questions about hidden features in sql server What can you tell us about Oracle? Hidden tables, inner workings of ..., secret stored procs, package that has good utils... Since Apex is now part of every Oracle database, these Apex utility functions are useful even if you aren't using Apex: SQL> declare 2 v_array apex_application_global.vc_arr2; 3 v_string varchar2(2000); 4 begin 5 6 -- Convert delimited string to array 7 v_array := apex_util.string_to_table('alpha,beta,gamma,delta', ','); 8 for i in 1..v_array.count 9 loop 10 dbms_output.put_line(v_array(i)); 11 end

Hidden features in Oracle

你。 提交于 2019-11-26 22:32:23
问题 Locked . This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. I enjoyed the answers and questions about hidden features in sql server What can you tell us about Oracle? Hidden tables, inner workings of ..., secret stored procs, package that has good utils... 回答1: Since Apex is now part of every Oracle database, these Apex utility functions are useful even if you aren't using Apex: