-
대량의 테스트 데이터를 생성하는 프로시져IT, 프로그래밍/Database (Oracle) 2018. 9. 6. 16:271234567891011create 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);
cs 프로시져 연습
'IT, 프로그래밍 > Database (Oracle)' 카테고리의 다른 글
[PL/SQL] 기초 문법 (0) 2019.01.16 [PL/SQL] PL/SQL 기초 (0) 2019.01.15 TNS:no appropriate service handler found 에러(ORA-12519) (0) 2018.09.06 오라클 처음 배울때 헷갈릴 수 있는 부분 (SQLdeveloper) (0) 2018.07.15 [ORACLE] 오라클 데이터 타입 (0) 2018.01.17