User default Page Size set to '0'

お困りですか?

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

コミュニティに質問

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

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

問題

After upgrading JIRA many users are reporting their default 'Page Size' is now set to 0.

診断

Run this query to find the global setting for number of Issues displayed per Issue Navigator page


select propertyvalue from propertystring where id = (select id from propertyentry where property_key = 'user.issues.per.page' and entity_name = 'jira.properties');

You can check the value against the user's preferences, substituting xxx with the username.
select propertyvalue from propertynumber where id = (select id from propertyentry where property_key = 'user.issues.per.page' and entity_name = 'ApplicationUser' and entity_id = (select id from cwd_user where lower_user_name = 'xxx'));

原因

Currently, the cause is unknown but observed upgrading from JIRA 5.2.5 to 7.9.1

回避策

Workarounds are ways to temporally circumvent a problem, although it still exists in the application.

(warning) データベースを変更する前に、データのバックアップを必ず行いましょう。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除のテストを行うことをご検討ください。

Please do not run the following steps without backing up your database first!
1. Backup database
2. Shutdown Jira
3. Run the following statements:

delete from propertynumber where id = (select id from propertyentry where property_key = 'user.issues.per.page' and entity_name = 'ApplicationUser');

delete from propertyentry where property_key = 'user.issues.per.page' and entity_name = 'ApplicationUser';

4. Start Jira
5. Configure the 'Number of Issues displayed per Issue Navigator page' in the Jira administration >> System >> Default user preferences




最終更新日 2018 年 6 月 14 日

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

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