ORACLE bug 5361778 5083393

huakaibird發表於2008-03-21
free space 大於db file的大小

遇到一個奇怪的問題, db file free space的大小大於file的大小。導致在toad下看到的使用率為負的


select sum(bytes) from dba_free_space where file_id=8;
result: 35672489984 (這個大小已經達到了資料檔案的max)


select bytes from dba_data_files where file_id=8;
result: 10171187200
由於oracle bug 5083393 導致,
solution:
purge tablespace TS_NAME;
exec dbms_space_admin.tablespace_rebuild_bitmaps('TS_NAME');
[@more@]

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

相關文章