How to List Issue Type changes of Issues in JIRA
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
The purpose of this article is to show how to get a list of issue type changes of issues in JIRA. The changes can be viewed in "History" tab on each issue. This article will help on getting a list of issue type changes of all the issues in JIRA by executing a SQL command against the JIRA database.
回避策
- Log in to JIRA database.
- Run the following SQL command to list the changes:
select * from changeitem where field = 'issuetype';
- Example result will look like following:
select * from changeitem where field = 'issuetype';
id | groupid | fieldtype | field | oldvalue | oldstring | newvalue | newstring
-------+---------+-----------+-----------+----------+-------------+----------+-----------
10007 | 10005 | jira | issuetype | 2 | New Feature | 3 | Task
10000 | 10000 | jira | issuetype | 2 | New Feature | 3 | Task
(2 rows)