create sequence TEST_SEQ;
commit;
-----------0--------------------0------------------------0--------------
create or replace procedure PROC_INSERT(nCount NUMBER)
is
loop_val number := 0;
begin
for i in 1..nCount loop
insert into TEST_TB(TESTEID) values(TEST_SEQ.NextVal);
end loop;
end PROC_INSERT
/
commit;
-----------0--------------------0------------------------0--------------
exec PROC_INSERT(10000);
'DataBase > Sql' 카테고리의 다른 글
[Sql] Oracle - Select시 자동 num 증가 (0) | 2010.03.12 |
---|---|
[Sql] Oracle, msSql - 프로시저 소스 검색 (0) | 2009.09.18 |
[Sql] Oracle - 문자열 제어 (0) | 2009.08.28 |
[Sql] Oracle - Index생성 & 삭제 (0) | 2009.07.30 |
[Sql] Oracle - 날짜와 시간 포맷팅 (0) | 2009.06.01 |