Under normal conditions (not using SYS or maybe using it)-
SQL> select * from dual;
D
-
X
Under not so normal conditions (connected as SYS)-
SQL> alter database close;
Statement processed.
SQL> select * from dual;
ADDR INDX INST_ID D
-------- ---------- ---------- -
00FA6E50 0 1 X
I know DUAL is a special magic table (etc. etc.) but
What is different with DUAL when the DB is on standby? What is the relevance if ADDR, INDX, INST_ID in standby?