Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to verify the actual connection in sqlplus
gle_at_rts.co.at (Erhard Glueck) wrote in message news:<3653c318.0111200503.3aabcacf_at_posting.google.com>...
> in sqlplus I need to verify the connection string used for the actual
> connection.
> Because I have more sessions over days open, I want to be certain, to
> which database I speak, and this is only possible to be remembered
> belonging the whole connection string.
Why not just query Oracle for the database name or instance name?
select * from v$database;
select * from v$instance;
![]() |
![]() |