Hi
We need to get the statistics of Language (visible in Profile ) used by Jira users.
What is the Database table and Field storing User's language?
Regards
Piyal
Hi @Piyal Nanayakkara ,
please use the following query to retrieve info about language user preferences :
select u.user_key, PROPERTY_KEY, propertyvalue
from propertyentry pe
join app_user u on u.id = pe.entity_ID
join propertystring ps on ps.id = pe.id and property_Key = 'jira.user.locale';
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you're welcome @Piyal Nanayakkara
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fabio Racobaldo _Herzum_ ,
do you know a query for the users from an external directory?
This query works fine but I only see users from the internal directory.
Thanks for your feedback
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Marco Birrer ,
this query should show just all user that modified their personal settings. It will show all users, internal or external, but with personal settings.
All other users, who are not in this list, use the default settings defined by JIRA Admin.
Ciao,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fabio Racobaldo _Herzum_ ,
ahh i see.
great. Thank you very much for your quick feedback.
Ciao,
Marco
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.