Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

list default langauge of all users

Status
Not open for further replies.
Jun 28, 2001
30
US
I have a database with about 200 user accounts. About a dozen users have the default language set to Spanish, the rest are English. I need to find out which users are set to Spanish. How do I do this without having to look through each user login account individually?

 
check out in the system table syslogins (there is a field called language)

RT
 
try the following:

run against the master database...

select name, language from syslogins
where language = 'spanish'

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top