長さ 5000 の 5 つの列を持つオラクルのテーブルが必要です。varchar(5000)
を使用していますが、許可されていません。
Error starting at line 8 in command:
ALTER TABLE WORK_STATIC_DATA_AUDIT
MODIFY ("NEW_VALUE" VARCHAR2(5000))
Error report:
SQL Error: ORA-00910: specified length too long for its datatype
00910. 00000 - "specified length too long for its datatype"
*Cause: for datatypes CHAR and RAW, the length specified was > 2000;
otherwise, the length specified was > 4000.
*Action: use a shorter length or switch to a datatype permitting a
longer length such as a VARCHAR2, LONG CHAR, or LONG RAW
私はCLOB、LONGを試しましたが、テーブルごとに CLOB または Long のクローンを 1 つしか持てないと言っています。
私を助けてください..