清除oracle回收站

taogchan發表於2011-07-08
 drop table tableName後,並不能完全清除空間,可以採用以下方法:

    查詢垃圾資訊:

    SELECT t.object_name,t.type ,t.original_name FROM user_recyclebin t;

    清除垃圾資訊:purge table origenal_tableName;
    purge index origenal_indexName;

    刪除回收站所有垃圾資訊:
    PURGE recyclebin;

    刪除Table不進入Recycle的方法:
    drop table tableName purge;

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

相關文章