BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SQL> show parameter sga
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
lock_sga boolean FALSE
pre_page_sga boolean FALSE
sga_max_size big integer 1168M
sga_target big integer 1168M
一个很闲的库。
用plsql执行insert 一个大表时(insert into a(...) select ... from B@dblink),执行了一个多小时之后,发现少写了查询条件,此时查看了数据量,已经增长了8G左右,此时执行回滚,大概回滚了3个小时。接着执行select * from a 结果一直出不来,于是把a表drop,重新创建。
再用plsql执行insert (insert into a(...) select ... from B@dblink where rq>=20110101 and rq<=20111231),数据量大概是整表的一半,这次执行了11个小时还没完成
查了一下session
SQL> select event from v$session where status='ACTIVE' and sid=101;