ORA-38902: errors in array DML exceed string
Cause: The operation failed because the array DML had more errors than can be stored internally for BATCH ERRORs.
Action: Do not use BATCH ERROR mode when array DML has more error rows than the number specified in the error.
ORA-38902错误通常发生在当在应用程序中使用数组操作时,而数据库底层的字符串长度限制比预期的长一些时抛出。
1. 扩大字符串长度,以便容纳更多的数据行。
2. 将超出字符的数据发送到一个外部文件,然后在外部文件中执行操作。
3. 使用可写的DBMS_SQL子程序来修改语句的限制,以允许数据表中的更多数据行的处理。