- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
10#
发表于 2012-2-22 18:03:11
ODM data:- Hdr: 11075068 10.2.0.4 RDBMS 10.2.0.4.0 SPACE PRODID-5 PORTID-226
- Abstract: ORA-1653: UNABLE TO EXTEND TABLESPACE FAD
-
- SubComponent: Space Management
- ==============================
- DETAILED PROBLEM DESCRIPTION
- ============================
- CT has a tablespace FAD in which there are 5 datafiles with AUTOEXTEND ON
- option.
- Among the 5 datafiles one datafile reached its maxbytes and the rest are
- having available bytes.
- But they are receiving "ORA-1653: unable to extend table FA.FA_BOOKS by 130
- in tablespace FAD"
- as below:
-
- ORA-1653: unable to extend table FA.FA_BOOKS by 130 in tablespace FAD
- ORA-1653: unable to extend table FA.FA_BOOKS by 130 in tablespace FAD
- ORA-1653: unable to extend table FA.FA_BOOKS by 130 in tablespace FAD
- Fri Dec 24 16:23:46 2010
- Errors in file
- /apps/oracle/ERPPRD/erpprddb/admin/ERPPRD_orafinprdracdb01/udump/erpprd1_ora_
- 2809.trc:
-
- DIAGNOSTIC ANALYSIS
- ===================
- SQL> SELECT max(bytes)/1024/1024 FROM dba_free_space WHERE tablespace_name =
- 'FAD';
-
- MAX(BYTES)/1024/1024
- --------------------
- 99.921875
-
- SQL> SELECT NEXT_EXTENT, PCT_INCREASE FROM DBA_SEGMENTS WHERE
- SEGMENT_NAME='FA_BOOKS' AND SEGMENT_TYPE='TABLE' AND OWNER='FA';
-
- NEXT_EXTENT PCT_INCREASE
- ----------- ------------
- 1064960 0
-
- SQL> SELECT EXTENT_MANAGEMENT FROM DBA_TABLESPACES WHERE TABLESPACE_NAME =
- 'FAD';
-
- EXTENT_MAN
- ----------
- LOCAL
-
- SQL> SELECT file_name, bytes/1024/1024, autoextensible, maxbytes/1024/1024
- FROM dba_data_files WHERE tablespace_name='FAD';
-
- FILE_NAME BYTES/1024/1024 AUT MAXBYTES/1024/1024
- ------------------------------ --------------- --- ------------------
- /oradata/ERPPRD/fad01.dbf 32767.9844 YES 32767.9844
- /oradata/ERPPRD/fad02.dbf 10300.0391 YES 30000
- /oradata/ERPPRD/fad03.dbf 7944.53125 YES 10240
- /oradata/ERPPRD/fad04.dbf 2127.89063 YES 10240
- /oradata/ERPPRD/fad05.dbf 100 YES 10000
-
- WORKAROUND?
- ===========
- No
-
- TECHNICAL IMPACT
- ================
- Not able to do DML on the table FA.FA_BOOKS resides on the problematic
- tablespace FAD.
-
- RELATED ISSUES (bugs, forums, RFAs)
- ===================================
- NA
-
- HOW OFTEN DOES THE ISSUE REPRODUCE AT CUSTOMER SITE?
- ====================================================
- Always
-
- DOES THE ISSUE REPRODUCE INTERNALLY?
- ====================================
- Never
-
- IS A TESTCASE AVAILABLE?
- ========================
- No
复制代码 类似的案例 10.2.0.4 上
Among the 5 datafiles one datafile reached its maxbytes and the rest are
having available bytes.
But they are receiving "ORA-1653: unable to extend table FA.FA_BOOKS by 130
in tablespace FAD" |
|