/
Database query to find the types of chart formats used in the Dataplane app.
Database query to find the types of chart formats used in the Dataplane app.
This article provides the database query to find the types of chart formats used in the Dataplane app.
Instructions
Login to the Jira instance database.
Consulting with the database administrator for guidance is recommended if one requires information about the database.Run the following Jira database query to find the types of chart formats used in Dataplane.
SELECT regexp_replace("OPTIONS", '.*<reportConfigSelection><key>reportChartFormat</key><selectedValue><string>(.+?)</string></selectedValue>.*|^.*$', '\1') as chart_format, COUNT(1) FROM "AO_6714C7_SAVED_REPORT_RECORD" GROUP BY chart_format ORDER BY count desc;
Sample output:
chart_format | count ----------------------------+------- columnChart | 58 areaChart | 56 barChart | 56 lineChart | 22 verticalNonStackedBarChart | 9 pieChart | 4 maxMinChart | 2 verticalBarChart | 2 multiPieChart | 1 (9 rows)
Sample screenshot from a third-party DB tool, DbVisualizer tool:
These are read-only commands, there is no modification of the database data.
, multiple selections available,
Related content
Database query to find the count of Dataplane reports created by type of report.
Database query to find the count of Dataplane reports created by type of report.
Read with this
Database query to find the Customizer Scripts used in Dataplane reports.
Database query to find the Customizer Scripts used in Dataplane reports.
More like this
Customizing Charts and Data Series
Customizing Charts and Data Series
More like this
Customizing Charts and Data Series
Customizing Charts and Data Series
More like this
Customizing Charts and Data Series
Customizing Charts and Data Series
More like this
Database query to find the count of Dataplane reports created by a Jira user
Database query to find the count of Dataplane reports created by a Jira user
Read with this