Transportable Tablespace
Transportable Tablespace
SELECT tp.endian_format
FROM v$transportable_platform tp, v$database d
WHERE tp.platform_name = d.platform_name;
Practical###
CONN / AS SYSDBA
###################################################################################
###################################################################################
######### source database ##############
CONN / AS SYSDBA
EXEC SYS.DBMS_TTS.TRANSPORT_SET_CHECK(ts_list => 'TEST_DATA', incl_constraints =>
TRUE);
SQL>
-- we export the tablespace metadata using the export (expdp or exp) utility.
CONN / AS SYSDBA
--Copy the datafile to the appropriate location on the destination database server.
--Also copy the dump file to a suitable place on the destination database server.
-- You may use binary FTP or SCP to perform this copy.
now
source tablespace can now be switched back to read/write mode.
"Tablespace altered."
SQL>
###########################################################################
###########################################################################
CONN / AS SYSDBA