I\'m looking for a good way to perform multi-row inserts into an Oracle 9 database. The following works in MySQL but doesn\'t seem to be supported in Oracle.
you can insert using loop if you want to insert some random values.
BEGIN FOR x IN 1 .. 1000 LOOP INSERT INTO MULTI_INSERT_DEMO (ID, NAME) SELECT x, 'anyName' FROM dual; END LOOP; END;