「java.sql.SQLException: ORA-12899: value too large for column (列の値が大きすぎます)」により、Confluence のアップグレードに失敗する
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
When upgrading Confluence, the following error appears in atlassian-confluence.log
file:
Caused by: java.sql.SQLException: ORA-12899: value too large for column "CONFPROD5"."AO_9412A1_AONOTIFICATION"."GLOBAL_ID" (actual: 419, maximum: 255)
原因
There is an entry(s) in your Oracle database that is too long.
It may be because of the encoding that is being used in your previous database, which does not match up to the encoding you have set for your new Oracle.
ソリューション 1
Truncate all data with column length larger than 255:
Oracle
UPDATE <table_name> SET <column_name>=SUBSTR(<column_name>,1,255) WHERE LENGHT(<column_name>) > 255;
For example, if the actual error message is "value too large for column "CONFPROD5"."AO_9412A1_AONOTIFICATION"."GLOBAL_ID" (actual: 419, maximum: 255)", the UPDATE statement will look like this:
Oracle
UPDATE AO_9412A1_AONOTIFICATION SET GLOBAL_ID=SUBSTR(GLOBAL_ID,1,255) WHERE LENGHT(GLOBAL_ID) > 255;
You might need to check if your database collation is supported
ソリューション 2
Another alternative is to increase the column size to more than 255 characters:
Oracle
ALTER TABLE <table_name> ALTER COLUMN <column_name> TYPE varchar(600);
For example, if you want to set OS_PROPERTYENTRY to 600.
Oracle
ALTER TABLE OS_PROPERTYENTRY ALTER COLUMN STRING_VAL TYPE varchar(600);
When you perform confluence upgrade, the column size might reset and value will be truncated