- 最后登录
- 2014-8-27
- 在线时间
- 17 小时
- 威望
- 26
- 金钱
- 213
- 注册时间
- 2012-5-4
- 阅读权限
- 10
- 帖子
- 20
- 精华
- 0
- 积分
- 26
- UID
- 410
|
1#
发表于 2013-5-2 14:12:44
|
查看: 2379 |
回复: 1
本帖最后由 Jer0n 于 2013-5-2 17:49 编辑
环境:RHEL5.5 x64 + Oracle 11.1.0.7.0
现状:
1, UNDO设置- SQL> show parameter undo
- NAME TYPE VALUE
- ------------------------------------ ----------- ------------------------------
- undo_management string AUTO
- undo_retention integer 900
- undo_tablespace string APPS_UNDOTS1
复制代码 2,UNDO数据文件为fixed_size- SQL> select file_name,tablespace_name,bytes/1024/1024,AUTOEXTENSIBLE from dba_data_files where tablespace_name='APPS_UNDOTS1';
- FILE_NAME TABLESPACE_NAME BYTES/1024/1024 AUT
- ---------------------------------------- ------------------------------ --------------- ---
- /oracle/db/apps_st/data/undo01.dbf APPS_UNDOTS1 12288 NO
复制代码 3, UNDO TUNED_UNDORETENTION- BEGIN_TIME END_TIME TUNED_UNDORETENTION
- --------------------- --------------------- -------------------
- 02-MAY-13 10:40 02-MAY-13 10:50 7058731
- 02-MAY-13 10:50 02-MAY-13 11:00 6999264
- 02-MAY-13 11:00 02-MAY-13 11:10 6969871
- 02-MAY-13 11:10 02-MAY-13 11:20 6860267
- 02-MAY-13 11:20 02-MAY-13 11:30 5920566
- 02-MAY-13 11:30 02-MAY-13 11:40 6396227
- 02-MAY-13 11:40 02-MAY-13 11:50 6397659
- 02-MAY-13 11:50 02-MAY-13 12:00 6385033
- 02-MAY-13 12:00 02-MAY-13 12:10 6403607
- 02-MAY-13 12:10 02-MAY-13 12:20 6403106
- 02-MAY-13 12:20 02-MAY-13 12:30 6392924
复制代码 4, UNDO EXPIRED/UNEXPIRED- SQL> SELECT tablespace_name,status,SUM(bytes)/1024/1024 "Bytes(M)"
- 2 FROM dba_undo_extents
- 3 GROUP BY tablespace_name, status;
- TABLESPACE_NAME STATUS Bytes(M)
- ------------------------------ --------- ----------
- APPS_UNDOTS1 ACTIVE 10
- APPS_UNDOTS1 UNEXPIRED 12276.6875
- APPS_UNDOTS1 EXPIRED .25
复制代码 疑问:
从官方文档的说明来看,当UNDO设置为fixed_size,undo_management=AUTO时,默认的UNDO_RETENTION=900不会生效,此时UNDO会根据当前表空间大小(12GB),和当前系统的状态自行调整当前的TUNED_UNDORETENTION大小,从v$UNDOSTA(或DBA_HIST_UNDOSTAT)来看,最近一段时间这里该参数值在增加。同时我的系统中,可用的UNDO空间已经没有了,而之前,可用的UNDO一直有2-3GB,且使用率相对固定,请问这里UNDO的空间需要继续增加吗?不增加的话,对系统有负面的影响吗?
|
|