How to export data with Oracle SQL Developer?

SqlOracleOracle Sqldeveloper

Sql Problem Overview


How to export Oracle DB data using SQL Developer? I need all data, tables, constraints, structure and so on.

Sql Solutions


Solution 1 - Sql

In SQL Developer, from the top menu choose Tools > Data Export. This launches the Data Export wizard. It's pretty straightforward from there.

There is a tutorial on the OTN site. Find it here.

Solution 2 - Sql

In version 3, they changed "export" to "unload". It still functions more or less the same.

Solution 3 - Sql

If, at some point, you only need to export a single result set, just right click "on the data" (any column of any row) there you will find an export option. The wizard exports the complete result set regardless of what you selected

Solution 4 - Sql

To export data you need to right click on your results and select export data, after which you will be asked for a specific file format such as insert, loader, or text etc. After selecting this browse your directory and select the export destination.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAdomasView Question on Stackoverflow
Solution 1 - SqlAPCView Answer on Stackoverflow
Solution 2 - SqlEddie CanalesView Answer on Stackoverflow
Solution 3 - SqlsystemkernView Answer on Stackoverflow
Solution 4 - SqlPankaj SharmaView Answer on Stackoverflow