I have a query, I have a dmp (dump) file from oracle 12c , and I need to import it into 11c , but for some reason, I am not able to correctly perform my import
.
I am running:
impdp usuario/password schema=nombreDelEsquema VERSION=11 DIRECTORY=dirdmp DUMPFILE=NombreDelArchivo.DMP
... where dirdmp
is a directory that I created, indicating the path where the dump file I want to import is located.
Running the command generates the following error:
ORA-39142: incompatible version number 4.1 with the dump file
How to solve this problem?