/
Sample queries - Confluence labels
Sample queries - Confluence labels
These queries works with PostgreSQL and were tested against Confluence 5.10. You may need to adjust slightly for other databases. As with all queries against a product database, you need to define a new read-only data source to access the product's database.
Thanks to Shiran Kleiderman for the initial query and question on extending.
Site labels
select name as "Label" , count(name) as "Count" from CONTENT_LABEL left join LABEL on CONTENT_LABEL.labelid = LABEL.labelid group by name order by name
Labels for space
select name as "Label" , count(name) as "Count" from CONTENT_LABEL left join LABEL on CONTENT_LABEL.labelid = LABEL.labelid left join CONTENT on CONTENT_LABEL.contentid = CONTENT.contentid left join SPACES on CONTENT.spaceid = SPACES.spaceid where spacekey in ('ds') group by name order by name
Labels by space
select spacename as "Space" , name as "Label" , count(name) as Count from CONTENT_LABEL left join LABEL on CONTENT_LABEL.labelid = LABEL.labelid left join CONTENT on CONTENT_LABEL.contentid = CONTENT.contentid left join SPACES on CONTENT.spaceid = SPACES.spaceid group by spacename, name order by spacename, name
, multiple selections available,
Related content
Advanced column styles - 11.x
Advanced column styles - 11.x
Read with this
SQL Query macro - Cloud
SQL Query macro - Cloud
Read with this
App configuration - Cloud
App configuration - Cloud
Read with this
Migration from server/DC to cloud
Migration from server/DC to cloud
Read with this
How to convert an application server defined data source profile to a connection string profile
How to convert an application server defined data source profile to a connection string profile
Read with this
Configure Data Source Profiles - 11.x
Configure Data Source Profiles - 11.x
Read with this