I just installed PL/SQL Developer (version 10.0.5.1710), and my second query is:
SELECT * FROM MySchema.MyTable@DBRead
This is kicked back with:
ORA-16000: database open for read-only access
ORA-02063: preceding line from DBRead
The database is indeed read-only, and that's fine; I rarely need to update anything in this system.
What do I need to adjust in PL/SQL Developer to get it to recognize that I am just trying to read?
The same query, with the same connection info, runs fine in SQL Developer or TOAD.