出現ora-31655錯誤的情況
原因:是因為不是同一個schema,導致的問題產生
解決方案:
在導入語句最后添加上remap_schema=old:new
着old是原schema,也就是導出的用戶名,new是想要導入的用戶名
如:這里有一個expdp導出的dmp文件用戶是test_old,想要到入到其他的數據庫中的test_new
impdp test_new/test_new dumpfile=test_old.dmp directory=test_dir remap_schema=test_old:test_new