ORA-03297: file contains used data beyond requested RESIZE value

paulyibinyi發表於2008-02-25

當我們回收資料庫空間時,常用的方法是:

ALTER DATABASE
    DATAFILE '/oradata/ora9i/tools03.dbf' RESIZE  900M

但一執行報以下錯誤

ORA-03297: file contains used data beyond requested RESIZE value

ORA-03297 file contains used data beyond requested RESIZE value


Cause: Some portion of the file in the region to be trimmed is currently in use by a database object.

Action: Drop or move segments containing extents in this region prior to resizing the file, or choose a resize value such that only free space is in the trimmed.

使用如下指令碼可以獲得分配到高位top_blocks 的物件資訊

SQL> select distinct owner,segment_name,segment_type  from dba_extents where file_id = &file_id and (block_id + &top_blocks) >(select max(block_id) from dba_extents where file_id=&file_id)

top_blocks 可以透過以下方法得出;

SQL>select file#,name from v$datafile;

SQL>select max(block_id) from dba_extents where file_id=12;

MAX(BLOCK_ID)
-------------
124553

 SQL> show parameter db_block_size;
 
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
db_block_size                        integer     8192
SQL>   select 124553*8/1024 from dual;
 
124553*8/1024
-------------
  973.0703125

該塊位於973M與974M之間

 

透過上面sql查出來的物件資訊

alter table t_obj move new_tablespace_name;

對於分割槽表資訊:
ALTER TABLE "TEST"."TB_ACCESS" 
    MOVE PARTITION  "TB_ACCESS_P200608" 
    TABLESPACE "new_tablespace_name"

再進行回收表空間

整合出來的sql語句如下:

select distinct owner, segment_name, segment_type,tablespace_name
  from dba_extents
 where file_id =
       (select file#
          from v$datafile
         where name = '/oradata/ora9i/GAME_LARGE_2006_4_1.dbf')
   and (block_id + (select max(block_id)*8/1024 from dba_extents where file_id=(select file#
                  from v$datafile
                 where name = '/oradata/ora9i/GAME_LARGE_2006_4_1.dbf'))) >
       (select max(block_id)
          from dba_extents
         where file_id =
               (select file#
                  from v$datafile
                 where name = '/oradata/ora9i/GAME_LARGE_2006_4_1.dbf'));
  

 

 


 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-193116/,如需轉載,請註明出處,否則將追究法律責任。

相關文章