Other than querying the v_$database and v_$instance tables (or the views v$instance, v$database) is there any other way to programtically retrieve (from PL/SQL) the database name of an oracle database?

link|improve this question

feedback

2 Answers

dbms_standard.database_name

link|improve this answer
feedback
up vote 4 down vote accepted

Found the following on Experts Exchange:

select ora_database_name from dual;
select sys_context('userenv','db_name') from dual;
select global_name from global_name;

http://www.experts-exchange.com/Databases/Oracle/Q_20529577.html

link|improve this answer
+1, good additional info. – DCookie Apr 3 '09 at 20:35
feedback

Your Answer

 
or
required, but never shown

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