I have thousands of lines that look like this:
insert into TABLE (name) values ('name_1');
insert into TABLE (name) values ('name_2');
...
insert into TABLE (name) values ('name_10000');
Executing them one by one works just fine. But when I want to run two or more at once it will always return error at 2nd line:
Dynamic SQL Error.
SQL error code = -104.
Token unknown - line 2, column 1.
insert.
Any clues how to fix it? Removing ;
changes nothing.