简体   繁体   中英

copying data from one table to another table for different database servers in oracle

I have to insert table data from the test server database to prod server database in Oracle. Both table definitions are same.

You could use the DATA PUMP feature. It is a server based bulk data movement infrastructure.

  1. EXPDP from source database and create a dump file on the source server.
  2. Move the file to the destination server.
  3. IMPDP on the destination database.

Look at few examples here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM