How to determine ORACLE_HOME from PL/SQL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:09:48Zhttp://stackoverflow.com/feeds/question/1017936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1017936/how-to-determine-oraclehome-from-pl-sql1How to determine ORACLE_HOME from PL/SQL?Jens Bannmann2009-06-19T13:22:54Z2009-06-19T13:48:24Z
<p>Is it possible to determine where Oracle is installed using pure PL/SQL?</p>
<p>Use case:
In order to call an external C library, I need to know its exact path (for the <code>create library</code> call). My DLL will reside in Oracle's BIN directory, but I can't hard-code the path of the DB installation in my scripts...</p>
http://stackoverflow.com/questions/1017936/how-to-determine-oraclehome-from-pl-sql/1018042#10180421Answer by Bruno Rothgiesser for How to determine ORACLE_HOME from PL/SQL?Bruno Rothgiesser2009-06-19T13:45:39Z2009-06-19T13:45:39Z<p>Check the last postings on this page:</p>
<p><a href="http://www.mydatabasesupport.com/forums/database-discussions/34933-query-oracle%5Fhome-3.html" rel="nofollow">http://www.mydatabasesupport.com/forums/database-discussions/34933-query-oracle_home-3.html</a></p>
http://stackoverflow.com/questions/1017936/how-to-determine-oraclehome-from-pl-sql/1018055#10180553Answer by Brian for How to determine ORACLE_HOME from PL/SQL?Brian2009-06-19T13:48:24Z2009-06-19T13:48:24Z<pre><code>DECLARE
RetVal VARCHAR2(100);
BEGIN
dbms_system.get_env('ORACLE_HOME', RetVal);
dbms_output.put_line(RetVal);
END;
</code></pre>
<p>NOTE: It is likely you that you will not have permission to this package by default.</p>