|
t count(*) from t1;
COUNT(*)
----------
99000
alter system switch logfile;
SQL> shutdown immediate;
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup
ORACLE 例程已经启动。
Total System Global Area 1.0088E+10 bytes
Fixed Size 2261928 bytes
Variable Size 1644170328 bytes
Database Buffers 8422162432 bytes
Redo Buffers 19595264 bytes
数据库装载完毕。
数据库已经打开。
SQL> insert into t1 values(9999999,'rmfiletest');
已创建 1 行。
SQL> commit;
提交完成。
SQL> select * from t1 where rownum=1 order by sid desc;
SID SNAME
---------- ------------------------------
9999999 rmfiletest
|