Oracle Data Migration with expdp and impdp
Oracle Data Migration with expdp and impdp For Oracle DBA data migration using Export Import is common activity in day to day activity. Either you need to migrate data from Different version of oracle or between two different platform like windows server o linux platform. Export import is used mostly but require complete downtime for the database migration. In this blog ,We will share the steps to migrate the database from one database to another database using export and import. Below steps can be used for the same: 1) Create an empty database in target server and make sure database is in noarchive log mode. Make sure that the parameter for the source and target databases are same. Make list of application tablespace from source database to target database. You can get the DDL for all tablespaces in source databases using below command: SET LONG 20000 LONGCHUNKSIZE 20000 PAGESIZE 0 LINESIZE 1000 FEEDBACK OFF VERIFY OFF TRIMSPOOL ON BEGIN DBMS_METADATA.set...