I am trying to load to a target database where the schema name is different than that of in the data pump dump file from a source, and I only want to load a few specific tables.
is there a way to do this with data pump import? I've tried a few different ways but it's not working..
for example, I've used the following in a par file, then I will run as "impdp B parfile=file"
DUMPFILE=xxx
LOGFILE=xxx
DIRECTORY=dpump
REMAP_SCHEMA=A:B
TABLES='"C"','"D"'.......
any ideas?