Hi guys,
How to find the database name of a particular user?
i know how to find the database name of currently connected user.
select name from v$database;
i connect to
sys user, and query the list of user by
select * from all_users;
from the above query i get all username but i cant get database name. so which query to get username as well as database name?
Thanks in advance