cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Oracle Database Users...

Former Member
0 Likes
4,019

HI,

How I can see the list of all Oracle Database user .... is there any way, plz lemme know.

thanks

View Entire Topic
Former Member
0 Likes

Hai,

The following command will show you the users in database

SQL>select username from dba_users;

If you further information about the account status

SQL>desc dba_users;

SQL>select username,account_status from dba_users,

Thanks and Regards,