緣由:是由於不是同一個schema,致使的問題產生數據庫
解決方案:rem
在導入語句最後添加上remap_schema=old:newtest
着old是原schema,也就是導出的用戶名,new是想要導入的用戶名file
如:這裏有一個expdp導出的dmp文件用戶是test_old,想要到入到其餘的數據庫中的test_newmap
impdp test_new/test_new dumpfile=test_old.dmp directory=test_dir remap_schema=test_old:test_new
im