ORA-913 Is Raised While Executing Insert All Statement With Large Number Of Columns.
(Doc ID 2692791.1)
Last updated on JULY 20, 2020
Applies to:
Oracle Database - Enterprise Edition - Version 11.2.0.4 and laterInformation in this document applies to any platform.
Symptoms
ORA-913 is raised while executing "insert all" statement with large number of columns.
Here is a simple testcase.
------------------------------
create table tab1
(c1 number,c2 number,c3 number,c4 number,c5 number,
c6 number,c7 number,c8 number,c9 number,c10 number);
INSERT ALL
INTO TAB1 VALUES(1,1,1,1,1,1,1,1,1,1)
...
INTO TAB1 VALUES(1,1,1,1,1,1,1,1,1,1)
select * from dual;
Note: "INTO TAB1 VALUES" repeats 6554 times.
------------------------------
Changes
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |