1. 程式人生 > >oracle exp 無法導出空表

oracle exp 無法導出空表

復制 src 放置 處理 window || alter 分享 rom

oracle exp 無法導出空表

select ‘alter table ‘|| a.table_name ||‘ allocate extent;‘ from user_tables a where a.table_name not in (select segment_name from user_segments where segment_type = ‘TABLE‘);

執行查出的sql語句,再導出dmp,就能導出空表了。

Oracle 11g無法導出空表的處理方法

在SQL窗口(SQL Window)中 執行以下SQL

SQL> select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where initial_extent is NULL

技術分享圖片

將復制查詢結果放置到SQL窗口(SQL Windows)中執行

oracle exp 無法導出空表