PL/SQL DeveloperYesOracle DatabaseThis document describes how to use PL/SQL Developer to import and export databases, and describes precautions for importing or exporting databases, next we will introduce them one by one.
Export Steps:
1 tools-> export user object selection option to export the. SQL file.
2 tools-> export tables-> Oracle Export select to export the. dmp file.
Import steps:
Note: It is best to delete the previous tables before import, except for importing other databases.
1 tools-> import tables-> SQL Inserts import. SQL file.
2 tools-> import talbes-> Oracle Import and then import the dmp file.
Notes:
Tools-> Export User Objects exports table creation statements including storage structures ).
Tools-> Export Tables contains three Export methods:
- Oracle Export
- SQL Insert
- Pl/SQL developer
The first is the file format exported as. dmp. The. dmp file is binary and can be cross-platform and contain permissions, which is very efficient and widely used.
The second type is exported as a. SQL file, which can be viewed in a text editor and has good versatility, but is not as efficient as the first type. It is suitable for importing and exporting small data volumes. Note that the table cannot contain blob, clob, and long fields. If so, the system will prompt that the data cannot be exported (the prompt is as follows: table contains one or more LONG columns cannot export in SQL format, user Pl/SQL developer format instead ).
The third type is exported to. PVDF, which is the file format of Pl/SQL developer. Only Pl/SQL developer can import and export files by themselves, and cannot be viewed in the editor.
This article describes how to use PL/SQL Developer to import and export Oracle databases. We hope this article will bring you some benefits. Thank you for your consideration!