系统环境: 1、操作系统:windows 2000 Server,机器内存128M 2、数据库: Oracle 8i R2 (8.1.6) for NT 企业版 3、安装路径:C:/ORACLE
模拟现象:
先将数据库设置为归档模式
SQL*Plus
--创建实验表空间 create tablespace test datafile 'c:/test.ora' size 5M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED default storage (initial 128K next 1M pctincrease 0) /
--创建实验用户 drop user test cascade; create user test identified by test default tablespace test; grant connect,resource to test; conn test/test create table a(a number); insert into a values(1); insert into a select * from a; --反复插入,达到10万条 commit;
拷贝test.ora为test1.ora文件 insert into a select * from a; --20万条 commit;