Hello all!
Is there a way to find out if a report is used and in which dashboards o other objects?
I need this in order to clear space and delete some unused reports.
Thanks in advance
Hello all!
Is there a way to find out if a report is used and in which dashboards o other objects?
I need this in order to clear space and delete some unused reports.
Thanks in advance
Hi Marco Ballarin,
A good way to start would be querying the dashboards table for the ID of the report.
Something like this:
SELECT * from dashboards where metadata LIKE "%<reportID>%";
This would grab the dashboards that have your report in a dashlet.
Can you give it a try and let me know if it works for you?
I hope this helps.
André
Hello Andre,
Thanks so much that's what i needed!