How to get the List of Users in ASE

There are multiple ways of getting the list of users in Sybase database. You may use one of the methods below,

Method 1

select * from sysusers
select name as user_name from sysusers

Method 2

sp_helpuser

You May Also Like

Leave a Reply?