How to export large amount of data using sql developer - Oracle

前端 未结 8 1442
南笙
南笙 2021-02-05 16:42

I want to upload some data from UAT DB to DEV DB. When I try to do this from Export function in SQL Developer, I got an error File C

8条回答
  •  鱼传尺愫
    2021-02-05 17:28

    If you want to transfer large amounts of data (or small amounts, too) from one database to another, you should consider the tools that were specifically designed for such tasks.

    First and foremost, look into data pump. It has a bit of a learning curve, though.

    exp and imp (also by Oracle) are a bit easier to handle, but they're older and not nearly as powerful as data pump.

    You might also want to look into the SQL*Plus copy command.

提交回复
热议问题