The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I export email addresses from a query result?

Vince Houmes
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 3, 2015

Currently, if I export a query result to Excel and include the Assignee column, the names show up as "Bob Henderson", "Carol Zheng", etc. Is there a way to get "bobh@company.com", "carolz@company.com" to be exported instead?

Thanks!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
cgauterio
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 8, 2015

Hi Vince,

Do you have access to the database? If you do, you can generate the query directly there and export the email addresses in a CSV. For instance:

copy (SELECT u.user_name, u.display_name, u.email_address
  FROM cwd_user u
 ORDER BY user_name) to '/tmp/users.csv' csv header;

This query will export the usernames, full names and email for every user in your instance.

Hope this helps.

Cheers,

Clarissa.