How to determine ORACLE_HOME from PL/SQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:09:48Z http://stackoverflow.com/feeds/question/1017936 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1017936/how-to-determine-oraclehome-from-pl-sql 1 How to determine ORACLE_HOME from PL/SQL? Jens Bannmann 2009-06-19T13:22:54Z 2009-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#1018042 1 Answer by Bruno Rothgiesser for How to determine ORACLE_HOME from PL/SQL? Bruno Rothgiesser 2009-06-19T13:45:39Z 2009-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#1018055 3 Answer by Brian for How to determine ORACLE_HOME from PL/SQL? Brian 2009-06-19T13:48:24Z 2009-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>