Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

export username,emails,Phone number

Kasi June 28, 2017

I am the adming for confluence, i would like to export all usernames,email id and phone numbers.


note i to have access to postgress db.


i see all user id are under cwd_user and the phone numbers are under OS_PROPERTYENTRY table but somehow not able to link.
Please help

2 answers

1 vote
Kasi July 18, 2017

Hi Andre,

 

Thanks for help but it did  not helped.I am looking for 2 columns email and phone number.

 

Above query returned as below which will not help.

                        string_val                        |             username ----------------------------------------------------------+----------------------------------  XXX-XXX-XXXX                                          | c6aa8eee44dc96a00144dc985a4500ac  XXX-XXX-XXXX                                                       | c6aa8eee44dc96a00144dc985b3601da  XXX-XXX-XXXX                                                     | c6aa8eee44dc96a00144dc985a6e00e3  XXX-XXX-XXXX                                                      | c6aa8eee44dc96a00144dc9859f50057  XXX-XXX-XXXX                                                       | c6aa8eee44dc96a00144dc985b8a0255

0 votes
Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 18, 2017

It looks like this same kind of question was answered over on Solved: Which Database table stores User Profiles? - Atlassian Communities

From that post @jing_hwa_cheokadded this SQL query to locate that information from the SQL database:

SELECT  OS_PROPERTYENTRY.string_val, CONTENT.USERNAME
FROM OS_PROPERTYENTRY
INNER JOIN CONTENT
ON OS_PROPERTYENTRY.entity_id=CONTENT.CONTENTID AND OS_PROPERTYENTRY.entity_key='confluence.user.profile.phone';


This SQL query appear to be able to join the phone number field from the OS_PROPERTY table  with the ID number in the content table that corresponds to the username.   Perhaps this will help.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events