What is the best way to insert into a table. I have to insert 10,00,000 plus records in a bulk fashion. The approach which I am using right now is many simple inserts.
insert into Table1 values ('1','2','3','4');
insert into Table1 values ('5','2','7','4');
insert into Table1 values ('9','1','3','4');
..............
..............
.........
commit;
Is there a better way of doing this in 10g? Can I do this in a PL/SQL ?
I am pretty new to Oracle.