steps at target:
--------------
ftped the dumpfile and the two datafiles to the respective location /dbfiles/oradata/DBNAME and the target database is up and running
The export contains two tablespaces with each one datafile... i am trying to import one tablespace
error:
ORA-39123: Data Pump transportable tablespace job aborted
ORA-01565: error in identifying file '/dbfiles/oradata/DBNAME/testtblspc.dbf'
ORA-27037: unable to obtain file status
HPUX-ia64 Error: 2: No such file or directory
Additional information: 3
Job "USERID"."SYS_IMPORT_TRANSPORTABLE_02" stopped due to fatal error at 16:43:24
1.DOES THE MOUNT POINT NAME ON THE TARGET HAS TO BE THE SAME AS SOURCE ?
2. INSTEAD OF DOING ONE DATAFILE AT A TIME FOR EACH TABLESPACE.. CAN I DO MULITPLE TABLESPACES USING TRANSPORTABLE_TABLESPACES = TABLESPACENAME.dbf, TABLESPACENAME2.dbf?
Many Thanks,
Last edited by castlerock; 12-02-2009 at 09:09 PM.
I think for transfer of tablespace's from one endian format to another endian format you must use RMAN Convert command either on the source or target systems. Query v$transportable_platform to get the target platform name.
Bring the tablespace to read only mode
on the source platform
Example:
rman>convert tablespace 'SAMPLE'
to platform='AIX Based(64 bit)'
db_file_name_convert='/u01/oradata/index01.dbf','/usr/tmp';
copy the file to target and import the metadata and bring the tablespace online.
Bookmarks