Hi Everyone,

I need to transport tablespace from 11g(Red Hat Linux 4) to 10g (Windows Vista 32-bit), as both endian formats are same. I tried with DATAPUMP, below are steps I followed.
ON Source- LINUX
1)Checked whether there are any dependent objects in the other tablespaces.
2)Kept the tablespace in READ-ONLY mode.
3)EXPDP SYSTEM/***** DIRECTORY=DATA_PUMP_DIR DUMPFILE=TB_EXP.DMP
TRANSPORT_TABLESPACES=EXP
ON Destination(Windows-32 bit Vista)
4)Ftp the data files and Dump from previous step.
5)impdp SYSTEM/***** DIRECTORY=DATA_PUMP_DIR DUMPFILE=TB_EXP.DMP
TRASPORT_DATAFILES='C:\ORACLE\ORADATA\EXP.DBF'

I got these errors:
ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-39142: incompatible version number 2.1 in dump file "C:\oracle\admin\

I browsed and found that As I was using 11g datapump for export, 10g datapump for import, the operation failed.

So, I am thinking whether is it possible or what is the right procedure to implement this, to transfer the Tablespaces from 11g to 10g.

Thanks in Advance for your help.