I am trying to create a report template that will display the database environment (Oracle in this case) name at run-time. Does anyone know how to get the database environment name displayed at run-time?
Thanks.
have you looked in the Oracle forums for the available sql functions?
I thought there might be a default function available. However, it is easy enough to create a query (select name from v$database;) and pass that information into the report.
Thanks.