Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how to get macro usage report for confluence 5.1.3

Rinku Saha October 31, 2014

Hi,
Earlier version of confluence we run the report for different macro usage. Right now we are using confluence version 5.1.3, how to get the same report.
as an examaple we using run the query like below . Please suggest. it really and urgent requirement.

  

SELECT b.BODYCONTENTID, b.BODY, b.CONTENTID, c.TITLE , c.VERSION, c.CONTENTTYPE, c.SPACEID,  sp.Spacename, sp.SPACEKEY FROM BODYCONTENT AS b INNER JOIN [CONTENT] AS c ON b.CONTENTID = c.CONTENTID INNER JOIN SPACES SP ON SP.SPACEID=c.SPACEID WHERE (b.BODY LIKE '%{macroname%')

 Thanks'

Rinku

2 answers

1 vote
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 31, 2014

The problem is the b.BODY LIKE '%{macroname%'. You need to specify the new storage format for macros. It should look more like this.

 

SELECT
	b.BODYCONTENTID,
	b.BODY,
	b.CONTENTID,
	c.TITLE,
	c.VERSION,
	c.CONTENTTYPE,
	c.SPACEID,
	sp.Spacename,
	sp.SPACEKEY
FROM BODYCONTENT AS b
INNER JOIN [CONTENT] AS c ON b.CONTENTID = c.CONTENTID
INNER JOIN SPACES SP ON SP.SPACEID=c.SPACEID
WHERE (b.BODY LIKE '%<ac:structured-macro ac:name="macroname">%')
Patrice Foerster November 5, 2015

That's exactly what I was looking for. Thanks, mate!

Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 5, 2015

If you are on a newer version than 5.1.3 then you could use the user macro that I created at the below address. It is better than the above query. It requires at least Confluence 5.5. http://iamdav.in/2015/01/06/confluence-macro-usage-report/

0 votes
Rodrigo Girardi Adami
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 31, 2014

Hi Rinku,

As far as I know, this query shows all pages that uses this macro. Unfortunately confluence doesn't have a bundled functionality to show the macros.

The query that you listed will work to show the pages that uses the macros.

Cheers,

Rodrigo

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events