Hey,
I'd like to list all filters and potentially map them to the dashboards they are associated to. I can find all filters in the DB (searchrequests table) but I can't seem to find a link between a dashboard and a filter.
I'd like to determine which filters (my own filters) are being used on dashboards since I want to delete a few of them. The info if a filter is being marked as a favourite is helpful but I'd need the dashboard info aswell.
Any ideas?
Cheers Christian
SELECT * FROM `jira_prod`.`portalpage` p inner join portletconfiguration c on p.id = c.portalpage LEFT JOIN gadgetuserpreference g on c.ID = g.portletconfiguration LEFT JOIN searchrequest s ON s.ID = SUBSTRING(g.USERPREFVALUE,8,5) WHERE USERPREFVALUE like "filter%"order by p.ID ;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Syed Khwaja Moinuddin this is going to be the name of your Jira's database schema. In this case, theirs is named "jira_prod". In PostgreSQL by default it would be named "public".
Please let me know if you have any questions!
Regards,
Adrian Castillo
Atlassian Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you need to join the portalpage table (dashboards) to the portletconfiguration (instance of a gadget on a dashboard) to the gadgetuserpreference (USERPREFKEY='projectorFilterId') then onto the searchrequests table..... not sure I have the stomach for doing the actual SQL myself!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like you've done it ;-)
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.