KFAA30667-E
The maximum number of elements specified in the CHANGE clause of the ALTER TABLE statement is invalid. (reason = aa....aa) (M+J+O)
ALTER TABLE文のCHANGE句に指定した最大要素数に誤りがあります。 <SQLSTATE:42I32>
- aa....aa:エラー要因
-
-
the new value is less than the current value:
最大要素数を変更前より小さくしようとしています。
-
the data type of the target column is not the array type:
配列型ではない列の最大要素数を変更しようとしています。
-
- (S)
-
このSQL文を無視します。または,このトランザクションを無効にします。
- 〔対策〕
-
出力されたエラー要因に従って,次に示す対処をしてください。
-
the new value is less than the current valueの場合
変更前の最大要素数より大きい値を最大要素数に指定して,ALTER TABLE文を再実行してください。
-
the data type of the target column is not the array typeの場合
CHANGE句に配列型の列名を指定して,ALTER TABLE文を再実行してください。
-