Upgrade Oracle 11.2.4 to 19.3.0 Using Expdp / Impdp
Example of Using Oracle Data Pump The steps for using Oracle Data Pump to upgrade or migrate a database have not changed from previous releases. If you would like to migrate with Oracle Data Pump using conventional dump files, the steps would be as follows:
SQL> create directory bkup_dir as '/u02/oradb/bkup';
1. Export the source database to a dump file:
2.$ expdp srcadmin/password
6. SQL> create directory bkup_dir as '/u02/oradb/bkup'';
7. SQL> create user test identified by test123
In this example, we take advantage of Oracle Data Pump features such as the PARALLEL parameter to improve performance. In other cases, you might use network mode to eliminate the need for a dump file. Oracle Data Pump is fully documented in Oracle Database Utilities Guide.