How to find the total number of sprints and identify the oldest closed sprints

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: サーバーと Data Center のみ。この記事は、サーバーおよび Data Center プラットフォームのアトラシアン製品にのみ適用されます。

目的

The total number of sprints, including closed sprints, in your instance can contribute to problems with the closedSprints() JQL function, and overall performance degradation related to slow sprint cache population. 

ソリューション

If you experience problems, use the following queries to check the total number of sprints, and identify the oldest sprints so they can be deleted if no longer required. 

Find the total number of sprints

Query tested on PostgreSQL and MySQL. You may need to adapt this query for other databases.  

PostgreSQL
SELECT count(*) 
FROM "AO_60DB71_SPRINT" 
where "CLOSED" = true
MySQL
SELECT count(*) 
FROM AO_60DB71_SPRINT 
where CLOSED = 1


Find the oldest sprints

Query tested on PostgreSQL and MySQL. You may need to adapt this query for other databases.  

PostgreSQL
SELECT * 
FROM "AO_60DB71_SPRINT" 
where "CLOSED" = true 
order by "END_DATE"
MySQL
SELECT * 
FROM AO_60DB71_SPRINT 
where CLOSED = true 
order by END_DATE





最終更新日: 2022 年 1 月 24 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.