天天看點

oracle資料庫10G用戶端導出11G資料檔案,空表不能導出

10G用戶端導出11G資料檔案,如果存在空表,是不能導出的,解決辦法:

1.執行select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;

2.執行上一步查詢出來的語句。

3.正常導出dmp檔案。