Here are the steps to for exporting the data in Oracle SQL Developer. These are very simple steps which can be performed to extract any of the database objects.
To export a database in Oracle SQL Developer, follow these steps:
To export a database in Oracle SQL Developer, follow these steps:
Method 1: Export Using Data Pump
- Open Oracle SQL Developer and connect to your database.
- Open DBA Panel:
- Go to View → DBA.
- Right-click your connection and select Add Connection.
- Expand the connection and navigate to Data Pump → Export Jobs.
- Create an Export Job:
- Right-click Export Jobs and select New Export Job.
- Choose Full, Schema, Table, or Tablespace Export.
- Configure the directory, file name, and options (compression, parallelism, etc.).
- Click Start to export.
Method 2: Export Schema/Tables Using SQL Developer GUI
- Connect to the database in SQL Developer.
- Go to Tools → Database Export.
- Select Export Options:
- Choose whether to export a full schema, specific tables, or objects.
- Set output format (SQL script, CSV, etc.).
- Choose Save Location:
- Specify file name and directory for the exported file.
- Click Finish to generate the export file.
Method 3: Export Data Only (CSV, Excel, etc.)
- Right-click a table and select Export.
- Choose the format (CSV, Excel, JSON, XML, etc.).
- Specify the file location.
- Click Next → Finish.
These are some of the methods which can be leveraged for the database export. Try and test it out with these methods and choose the best that suits you.