Skip to content

Instantly share code, notes, and snippets.

@eerien
Created May 14, 2013 02:22
Show Gist options
  • Save eerien/5573192 to your computer and use it in GitHub Desktop.
Save eerien/5573192 to your computer and use it in GitHub Desktop.
INSERT bulk data procedure.
DECLARE
BEGIN
FOR i IN 1..100000 LOOP
INSERT INTO T1 VALUES (i);
END LOOP;
COMMIT;
END;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment