I have a dump file which contains several tables (A, B, C).

How can I rename these tables (A -> x, B -> y, C -> z) during data import?

1 Answer

Remapping multiple table names is possible with comma separated table names as following example:

impdp user/pass directory=my_dp_dir remap_schema=src_schema:dest_schema REMAP_TABLESPACE=src_ts:dest_ts REMAP_TABLE=src_schema.A:x,src_schema.B:y,src_schema.C:z dumpfile=dump_file.dmp logfile=impdp.log 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.