How to find number of user in the database.

Showing Answers 1 - 15 of 15 Answers

rameshr

  • Nov 8th, 2006
 

hi....

select * from all_users;

....this will give all the users created

select count(*) from all_users;

....this will give u no of user

  Was this answer useful?  Yes

deepak sony

  • Nov 20th, 2006
 

thanks for giving me answers.

  Was this answer useful?  Yes

aaa

  • Nov 20th, 2006
 

all_users may not give you correct results... dba_users should be used

  Was this answer useful?  Yes

Kannan

  • Jan 6th, 2007
 

Sybase:

sp_who will help to find the available users.....

select * from sysusers - it used to find the no.of users in ur DB

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions