I want to:
select * from v$database@standby;
Problem:
- standby is mounted so only a SYSDBA user can connect to query it
- I can't find out how to use a database link using SYSDBA privilege
My goal is to display system information/stats from a standby Oracle database on a web page.
I'm using Oracle APEX. Pages are computed from mod_plsql which runs from an Oracle DB so it is easy to display the result of this kind of query.
Alternative:
- How to select * from "shell script"?