In that case, as far as I know, you will have to do one insert at a time.
In MySQL, you have
"INSERT INTO table1(field1, field2) VALUES (v1, v2),(v3,v4),...;"
, but as far as I know, that does NOT exist in Oracle, which means that you won't be able to do all inserts in one time with a SQL query.
So, if you want to do these inserts quickly, I suggest that you read raw data in a program (from a text file for example, or generated in the program), and loop on inserts... you have many ways to do that programmatically depending on the language you choose (PL/SQL, Java, C/C++, C#, ...) and if you want to do it VERY QUICKLY or not.
I may be able to help you depending on the language you choose.
Regards,
RBARAER