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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello everyone, I need some help:
We have just implemented Questions for Confluence and migrated an internet forum before starting. Now the technical user we have taken for the import leads the score list by far. Therefore I would like to reset this user's points. We cannot delete the user as we still need it. Can anybody help out? Thanks :)
There is no way to reset the points in the browser but we figured out a way to do it in the database.
Please back up your database before starting, and restart Confluence to pick up the new values when you finish running the SQL. These queries were tested on PostgreSQL, the syntax could vary slightly if you are using MS SQL, MySQL or Oracle.
First, find the user_key of the CLI User, by running this:
select * from user_mapping where lower_username = '<the lowercase login name of the CLI User>'
That will get you a result with a user_key that is associated with the user you want to delete points for.
Then, to delete all the CLI User's points, run this query:
delete from "AO_B1DBB9_VOTE"
where "TARGET_ID" IN (select contentid
from content
where contenttype = 'CUSTOM'
and pluginkey IN ('com.atlassian.confluence.plugins.confluence-questions:answer', 'com.atlassian.confluence.plugins.confluence-questions:question')
and creator = 'user_key_from_previous_query')
I look forward to hearing how this works for you.
Ann, Thanks for your quick reply. I will check with our Confluence Admin and get back to you. Could be that my reply will need some weeks as everybody is on holiday at this time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ann, Thanks for your quick reply.
I will check with our Confluence Admin and get back to you.
Could be that my reply will need some weeks as everybody is on holiday at this time.
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.