Register Login

Import Table from Different Schema

Updated May 18, 2018

Hello Experts,

May i know how to import table to different schema?

please share your valuable thoughts

thanks in advance.


Comments

  • 18 Feb 2015 4:16 pm Abhijeet Mudgal Helpful Answer

    You can try this: impdp scott/tiger dumpfile=emp.dmp directory=mydir1 fromuser=scott touser=testusr tables=emp
    and you can also change the table name while importing by this

    impdp scott/tiger dumpfile=emp.dmp directory=mydir1 fromuser=scott touser=testusr tables=emp remap_table=emp:employee.


×