How to find out the users list, which is all created in the oracle 11g
database. Is there any command
to find out the users list which we can execute f
You can try the following: (This may be duplicate of the answers posted but I have added description)
Display all users that can be seen by the current user:
SELECT * FROM all_users;
Display all users in the Database:
SELECT * FROM dba_users;
Display the information of the current user:
SELECT * FROM user_users;
Lastly, this will display all users that can be seen by current users based on creation date:
SELECT * FROM all_users
ORDER BY created;