Tagged Questions
The vinstance tag has no wiki summary.
2
votes
1answer
356 views
v$Instance permission errors
I wanted to create a view that looked something like the following but i keep getting an ORA-01031 - insufficient permission error
create view v_dbinfo as
Select INSTANCE_NAME,HOST_NAME from ...
2
votes
2answers
130 views
Determining Oracle Database Instance
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 ...