3

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?

Meisam
  • 435
  • 1
  • 4
  • 12

1 Answers1

4

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
Meisam
  • 435
  • 1
  • 4
  • 12