You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
We deleted by accident the bamboo admin users by adding an extra user and not selecting all the users in the "existingusers in group" pannel.
We cannot restore the database in the production environment so we want to restore to another server and manueally retrieve all the users in the postgresql tables.
Can anybody help with the location of the tables or provide us with a query that gives us the users in the bamboo-admin group.
Look at LOCAL_MEMBERS table
Only 1 local user which is in the admin group.
In our acceptance environment it's the same. i think that the rest are AD users.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
then check EXTERNAL_MEMBERS table
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexey.
I started with that table and found out the rest ! Thanks in advance.
Here's my query that lists the groups and their members:
SELECT em.extentityid, em.groupid, ee.name, ee.type, gr.groupname
FROM public.external_members em
inner join public.groups gr on (em.groupid=gr.id)
inner join public.external_entities ee on (em.extentityid=ee.id)
order by gr.groupname, ee.name;
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.