I cannot figure out how to put 1000000 dummy data without using FOR LOOP. This is the code I used:
CREATE TABLE dummy_records (
dummy_id number not null,
dummy_name varchar2(100)
);
BEGIN
FOR loop_counter IN 1..1000000 LOOP
INSERT INTO dummy_records (dummy_id, dummy_name) VALUES (loop_counter, dbms_random.value(1,100));
END LOOP;
END;