...
Oracle documentation says, Oracle Data Pump utilities are designed for enhanced performance especially for large databases. For large volume database a dramatic increase in performance should be experienced in compared to the original Export and Import utilities. Moreover original Export (exp
) or Import (imp
) utilities are de-supported for general use as of Oracle Database 12c. Therefore, Oracle recommends to use the new Data Pump Export (expdp
) and Import (impdp
) utilities, except the case where you want to import files that were created using the original Export utility (exp
).
There are some fundamental differences between original utilities and Data Pump utilities. Those are,
- Data Pump uses parallelism to export large database in lesser time.
- Data Pump technology fully uses all available resources to maximize throughput and minimize elapsed job time.
- Dump files are read and written directly by the server and, therefore, do not require any data movement to the client.
- The database administrator (DBA) must create directory objects that define the server locations to which files are written.
In recent version of Ginesys (above 11.147.5), Oracle 12c database (12.1.0.2.0) is the only supported Oracle version. Also the original export utility is not capable to do a successful complete export of Ginesys database (12c) as exp
fails to export some advanced functionality in Oracle 12c. Ginesys already released the revamped backup utility based on Oracle Data Pump Export utility (expdp
) in release 11.147.8. To accommodate the changes in Oracle utility Ginesys backup utility has also changed. Now there are some specific requirement to select the backup location. This article will help you to select the backup location for Ginesys Backup utility.
Single server deployment (application and database on the same server):
In this case only one path is required for backup destination. User can mention a local physical path (say D:\GSL_BACKUP) or a shared UNC path on different server (\\FILESERVERFileServer\GSL_BACKUP). Only difference is, if UNC path is mentioned for as backup destination, utility will not create the zip of final compressed backup file (.bak). The Oracle export (.dmp) files remain as it is in 'RAW_FILE' directory.
Separate server deployment (
...
application and
...
database on different server
...
):
...
...
Path 1:
...
...
Example:
Following examples clarify further what type of path to mention in Ginesys Backup utility.
In case database on Windows Server,
In case database on Linux Server,
imp
). As a result, any backup created by expdp
utility cannot be restored using Ginesys DB Restore utility. Manual restoration required.
Related Article
How To: Backup and Restore Oracle database manually using Data Pump Export and Import