Question

I'm new at Oracle databases. I'm executing an impdp command and encountered this error:

ORA-00959: tablespace '$name' does not exist.

Is the only thing I can do is to create the $name tablespace?

Was it helpful?

Solution

Create the tablespace

or

remap the tablespace to use an existing one, with the remap_tablespace parameter:

impdp ... remape_tablespace=$name:$name2

Where $name2 is the name of an existing tablespace.

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top