1. 程式人生 > >Oracle 11G R2 用exp無法匯出空表的簡單方案

Oracle 11G R2 用exp無法匯出空表的簡單方案

alter system set deferred_segment_creation=false scope=both;

執行完需重啟DB INSTANCE。

並且對已經建立過的表無效,只對後面新建的表有效。


對已經建立的表可以執行一下Script。

select 'analyze table ' || A.TABLE_NAME || ' compute statistics;' from user_tables A;

執行結果的SQL


select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0


執行結果的SQL