当我想提交事务时,我得到以下错误:
ORA-01461:只能将一个长值绑定到一个长列中
我在这个事务中保存了多个实体--如何找到问题所在?
发布于 2019-12-02 12:02:06
ORA-01461只能绑定一个长值以插入到一个长列中。
Cause: An attempt was made to insert a value from a LONG datatype into another
datatype. This is not allowed.
**Action**: Do not try to insert LONG datatypes into other types of columns.
**Answer**: The LONG and LONG RAW datatypes have been deprecated and the easiest solution to the ORA-01461 error is to change the column datatype to as CLOB.https://stackoverflow.com/questions/59138466
复制相似问题