Hello
I was wondering if i can could get help with the information on the plugin - https://marketplace.atlassian.com/plugins/org.andya.confluence.plugins.metadata/server/overview
I need to find all pages where any macros of this plugin are present. As I see there is quite a number of those and there is a big change of missing them. I found that some info might be stored in os_propertyentry table. Like "metadata.XXX". But I’m not sure If I can select all macros using this syntax. As using the instruction I saw only description for finding metadata-list macro (see here - https://community.atlassian.com/t5/Answers-Developer-Questions/confluence-4-x-understanding-where-quot-metadata-quot-is-stored/qaq-p/496305).
Can anyone tell me the way (SQL in ideal way) I would be more than happy. Or I’d like to see some documentation on the plugin database structure if possible. Thank you.
You can just run "macroName: <macro>" in the search to get a list of pages it's used on.
With SQL, you're into searching the bodycontent table text for snippets of text referring to the macro, then joining with other tables to try to establish more information about the pages.
Indeed. Searching for each macro in Confluence earch tool was quite effective and too simple =)
I as still wondering if there is a way to search all macros from a particulat plugin without referring to each of the macro separately. Like as I don't know how many macros a particular plugin supports.
Anyway it is more of a food for thought. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there Alex,
If you want to use SQL to find the macros you still have to know the macro names. The SQL is in this kb: How to find all pages and spaces that use a specific macro via SQL
The macros are listed on this page: Metadata macros.
Hope that helps,
Ann
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are using Confluence 5.10+ there is a Macro Usage page in Confluence Admin that shows you all the macros used in your system and groups them by add-on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well said! Thank you for mentioning that.
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.