How to Fetch Page Information Containing Pagename, Url, Creator, Lastmodifiedby From the Confluence Database
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
This article will help you retrieve detailed Page information from your Confluence database.
Solution
The below SQL queries will fetch the following Page information data:
PageName
Creator
CreationDate
LastModified Date
SpaceName
LastModifier Username
PageURL
Note: Please replace the http:localhost:6720/c6720 value with your own base url value.
Oracle Syntax
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SELECT c.title as PageName,
u.username AS Creator,
c.creationdate,
c.lastmoddate,
s.Spacename,
um.username AS LastModifier,
CONCAT(CONCAT ('http:localhost:6720/c6720','/pages/viewpage.action?pageId='), c.contentid) AS "Page URL"
FROM content c
JOIN user_mapping u
ON c.creator = u.user_key
JOIN user_mapping um
ON c.lastmodifier = um.user_key
Join Spaces s
on c.SpaceID= s.SpaceID
WHERE c.prevver IS NULL
AND c.contenttype = 'PAGE'
AND c.content_status = 'current'
Order by s.spacename
;
MySQL and PostGres SQL syntax
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SELECT c.title as PageName,
u.username AS Creator,
c.creationdate,
c.lastmoddate,
s.Spacename,
um.username AS LastModifier,
CONCAT ('http:localhost:6720/c6720','/pages/viewpage.action?pageId=', c.contentid) AS "Page URL"
FROM content c
JOIN user_mapping u
ON c.creator = u.user_key
JOIN user_mapping um
ON c.lastmodifier = um.user_key
Join Spaces s
on c.SpaceID= s.SpaceID
WHERE c.prevver IS NULL
AND c.contenttype = 'PAGE'
AND c.content_status = 'current'
Order by s.spacename;
Was this helpful?