vote up 1 vote down star

Is it possible to determine where Oracle is installed using pure PL/SQL?

Use case: In order to call an external C library, I need to know its exact path (for the create library 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...

flag

2 Answers

vote up 1 vote down check

Check the last postings on this page:

http://www.mydatabasesupport.com/forums/database-discussions/34933-query-oracle_home-3.html

link|flag
1  
Thanks, I used the proposed approach to fetch the path of the DBMS_SUMADV_LIB library, which works fine on 10g as well. // Could you edit your answer and actually list the approaches to help other people who find this question? – Jens Bannmann Jun 19 at 14:18
vote up 3 vote down
DECLARE
 RetVal VARCHAR2(100);
BEGIN
  dbms_system.get_env('ORACLE_HOME', RetVal);
  dbms_output.put_line(RetVal);
END;

NOTE: It is likely you that you will not have permission to this package by default.

link|flag
Unfortunately, on my database, DBMS_SYSTEM is not installed. – Jens Bannmann Jun 19 at 14:14
Have you considered using a DIRECTORY? CREATE OR REPLACE DIRECTORY APP_ORACLE_HOME AS '/u01/oracle/10.1.2'; – Brian Jul 6 at 1:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.