프로시져
-
대량의 테스트 데이터를 생성하는 프로시져IT, 프로그래밍/Database (Oracle) 2018. 9. 6. 16:27
1234567891011create or replace procedure bulkInsert(maxLoop in number:=1)ISBEGINFOR temp IN 1..maxLoopLOOPinsert into blogBoard values (BOARD_SEQ.NEXTVAL, 'testContent', sysdate, 'testEmail', 'testTitle', 'testWriter');commit;END LOOP;END; exec bulkInsert(587);Colored by Color Scriptercs 프로시져 연습