I used TOAD, Oracle 11g.
I want to create Batch Insert script.
Example
INSERT INTO tbl_name (a,b,c)
VALUES(1,2,3),(4,5,6),(7,8,9);
But, when I use export dataset - insert statements, I get:
Insert into tbl_name (1, 2, 3)
Values (1, 2, 3);
Insert into tbl_name (1, 2, 3)
Values (1, 2, 3);
So, it takes a long time because there are too many rows.
Is there a way?
Thanks!