Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Current »

The SQL for JIRA Driver provides a compact and comprehensive data model. It is much simpler compared with the JIRA native database model, therefore SQL for JIRA queries are much easier, secure and friendly than JIRA native SQL.

The database tables are grouped into the following schemes:

  • PUBLIC (default): They represent all the JIRA Busines/Core entities visible from the JIRA web application (projects, issues, etc.). Despite the name of the schema is "PUBLIC" it requires JIRA authentication to access to any data.
  • SOFTWARE: (Optional) for the JIRA Software Java API. It is the new more powerful and faster the old AGILE schema as it is built on top of the Atlassian's Java API instead of REST.
  • SERVICEDESK: (Optional) for the JIRA ServiceDesk Java API.
  • BBBGIT: It supports BigBrassBand's Git integration for Jira
  • ZEPHYR: it supports SmartBear's Zephyr for Jira
  • ADMIN: JIRA Administration tables are grouped under this schema. Only JIRA administrators can view data on them. Initially was created to allow administrators to read all the JIRA configuration via SQL, but actually, it provides almost no functionality. 
  • AUX: it provides some helpful tables to make reporting even easier. 
  • /wiki/spaces/SFJ/pages/53413251: Deprecated tables are moved into this schema before to be dropped in future versions to allow a smooth transition to use the newer tables with a minimal impact in your current SQL for JIRA queries. You have to add the "DEPRECATED." schema prefix to your current SQL queries in order to still working, but it is strongly recommended that you replace them by the newer tables (which might impact your queries a lot).
  • No labels