INSERT ALL
INTO t (col1, col2, col3) VALUES ('val1_1', 'val1_2', 'val1_3')
INTO t (col1, col2, col3) VALUES ('val1_1', 'val1_2', 'val1_3')
.......
INTO t (col1, col2, col3) VALUES ('val1_1', 'val1_2', 'val1_3')
SELECT * FROM DUAL;
I'm using this statement to insert multiple rows into a table.
Sometimes I inserts correctly, even if I give it a couple of thousands of lines. I even inserted 10100 lines with it!
But sometimes, it says this
ORA-24335: cannot support more than 1000 columns
Any ideas ?