Oracle 11g has several new features. Today I will stay on DataPump technologies which was extended and enhanced EXP/IMP which first time was introduced on Oracle 10g. Here are main features: Compression Encryption Transportable Partition Option Data Options Reuse Dumpfile(s) Remap_table Remap Data http://www.oracle.com/technetwork/database/datapump11g2009-featureover-134227.pdf One of the main and essential feature is Partition option. Because if table size more than a little bit Gbytes and if table is partitioned how to transport this partition tables using EXPDP ? You can now export one or more partitions of a table without having to move the entire table. On import, you can choose to load partitions as is, merge them into a single table, or promote each into a separate table. Example: SQL> conn /as sysdba Connected. SQL> create user ulfet identified by ulfet; User creat...