SQL> create table test(no number,name varchar2(30),sal number, address varchar2(30));
Table created.
SQL> begin
2 for i in 1..5000000
3 loop
4 insert into test values(i,dbms_random.string('U',30),dbms_random.value(1000 ,9000),dbms_random.string('Z',30));
5 commit;
6 end loop;
7 end;
8 /
'Oracle' 카테고리의 다른 글
| sysdba 암호묻게 하는 방법 (0) | 2008/11/10 |
|---|---|
| 클라이언트에 서버 추가 (0) | 2008/10/24 |
| 실습 테이블 만들기(데이터 5백만건) (0) | 2008/10/22 |
| alertlog 모니터링 (0) | 2008/10/15 |
| Oracle 메모리 실시간 모니터링 명령어 (0) | 2008/10/15 |
| ORACLE 8i Installation on RHEL3 (0) | 2008/10/15 |

댓글을 달아 주세요