It looks like you might be repeating info. If I am reading this correctly, you want something like this as a result:
insert into TABLE1 (A, B, C) values
(1, 2, 3),
(4, 5, 6),
(7, 8, 9);
The way it is set up, it is putting it like:
insert into TABLE1 (A, B, C) values
(1, 2...