Oracle DataPump Enhancements
Full Transportable Export and Import of Data
- In Oracle 12c you now have the possibility to create full transportable exports and imports. A full transportable export contains all objects and data needed to create a copy of the database.
- To create a fully transportable export of your database you need to specify these 2 parameters in your command line:
- FULL=Y
- TRANSPORTABLE=ALWAYS
- The feature in not exactly new in Oracle 12c, it is possible to use it since 11.2.0.3.
- What can you do with a full transportable export:
- Convert a standard databaase to a PDB inside an existing CDB
- Upgrade a 11.2.0.3/4 to Oracle 12c
- Move the database to a different server
- The Full Transportable Tablespace feature can’t be used directly to transfer a database to a platform with a different endian format, you must use DBMS_FILE_TRANSFER or RMAN to convert the files to the good endian format.
- You must specify the VERSION=12.0 parameter if the database version is less that 12.1
Continue reading OCP 12C – DataPump, SQL*Loader, External Tables Enhancements