I am new to Oracle database. I see that if I connect as sys
user, I can do
select * from dba_users;
But once I have done conn nonsys@dbid
, I can no longer do that; I will get an error saying
ORA-00942: table or view does not exist
select * from sys.dba_users;
is not working either.
Could you please explain why this is and how I can do select * from dba_users;
after connected as a non-sys user?
Also, disconnect
makes me totally disconnected; is it possible to only "exit" current user and back to sys
in sqlplus and if so, how to do that?