I have export dmp file which are exported using exp command from oracle version 11.2.0.4.0. I want to import the file in my oracle version 11.2.0.2.0. But during import i am getting an error as 'IMP-00010 not a valid export file, header failed verification'.
The export dmp par file has following information :
USERID=TEST_CONFIG/TEST_CONFIG@Ik567G
OWNER=TEST_CONFIG
LOG=test01.log
FILE=test01.dmp
INDEXES=Y
CONSTRAINTS=Y
GRANTS=Y
COMPRESS=Y
FULL=N
ROWS=Y
CONSISTENT=Y
BUFFER=80200
FEEDBACK=500
And the import dmp test_config par file has following information :
LOG=TEST_CONFIG.log
FILE=test01.dmp
FROM USER=TEST_CONFIG
FULL=n
ROWS=n
INDEXES=n
CONSTRAINTS=y
IGNORE=y
I am running the import using following command :
imp TEST_CONFIG/TEST_CONFIG PARFILE=test_config.par
imp TEST_CONFIG/TEST_CONFIG PARFILE=test_config.par
I tried export and import many times and it works for me previously. As we have different sever and database now and When i compared and open the previous export file,its showing the version `EXPORT:V11.02.00` where i am able to import but now for the new export its showing the verison `EXPORT:V12.01.00`. So it looks compatibility issue.