Sure it's possible, especially with Bob Swift's SQL Plugin.
Here's the relevant query (this is for Confluence 4.1.2, so it might be different from 3.5 -- just check the schema):
update CONTENT set CREATOR="<new creator name>" where CONTENTID="<your content id>"
You can get details about installing, configuring, and adding permissions for this plugin here:
https://bobswift.atlassian.net/wiki/display/SQL/Confluence+SQL+Plugin
hth,
matt
I'm using Confluence 4.3, and this solution doesn't quite work. The suggested SQL command does change the creator displayed at the top of the page, but the author of the page that comes back in an RSS feed is still the old author. The same is true for the REST API. Also, after editing the page, the author somehow gets reverted back to the original author.
If you modify the update statement a bit, the above problems go away:
update content set creator='CONTENT_ID' where contentid = CONTENT_ID or prevver = CONTENT_ID
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all, the way this is done has changed somewhat in recent versions. Please see this page for detailed instructions: https://confluence.atlassian.com/display/CONFKB/How+to+change+the+creator+of+a+page
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone,
We used the instructions on that page and found that Confluence must be restarted after the queries are run, otherwise the "Created By" name displayed will revert as soon as the page is edited.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 from me. Its weird/startling to see people from so long ago...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there still an active feature request to allow this to be done in the UI? That I can vote for?
Seems ridiculous to need to do it via SQL. I saw a post requesting this in the UI back in 2013 - it really hasn't been done yet??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you mean within confluence (such as in a macro) or by modifying the database? If the latter, then change the value of the CREATOR field within the CONTENT table. You just need to identify the page by its CONTENTID.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Matthew. We would preference to change it within Confluence. Is that possible?
If not, do you know of any Atlassian documentation that would give some more detail on how to build the relevant SQL query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.