Could not find column '<column_name>' in previously parsed query!
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
要約
問題
When navigating to a branch of a repository in Bitbucket Server a Server Error is displayed, or when trying to clone a repository the following error is returned on the console:
remote: Repository hook com.atlassian.bitbucket.server.bitbucket-ref-restriction:restrictionEnforcerHook failed
remote: bundle [com.atlassian.bitbucket.server.bitbucket-ref-restriction]atlassian-bitbucket.log に次のエラーが返される。
Caused by: java.lang.IllegalStateException: Could not find column '<column_name>' in previously parsed query!診断
Bitbucket Server is using Oracle as its backend database.
原因
The Oracle user that Bitbucket Server is configured to connect to the database with has too many permissions.
ソリューション
ソリューション
To resolve this problem, revoke extraneous permissions from the Oracle user that Bitbucket Server uses to connect to the database by running the following queries:
REVOKE SELECT ANY TABLE FROM <db_user>;
REVOKE DBA FROM <db_user>;
REVOKE EXP_FULL_DATABASE FROM <db_user>;where <db_user> is the Oracle username that Bitbucket Server uses to connect to the database.
この内容はお役に立ちましたか?