Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This documentation aims to guide our customers in checking the amount of data they have for each Xray issue type. It also helps assess the size of their Jira instance, providing insight into the volume of data to be migrated to the Cloud.

To check the size of your data, run the following queries in your database:

Code Block
select count(*) from jiraissue j join issuetype as it on (it.id=j.issuetype) where it.pname='Test';

...