Mir Sayeed Hassan – Oracle Blog

Oracle DBA – Tips & Techniques | Learn with real-time examples

  • Translate

  • It’s Me






  • My Certificates

  • Links

    My Acclaim Certification : Credly Profile
    My Oracle ACE Pro Profile

  • Achievements

    Awarded Top 100 Oracle Blogs from Worldwide - #RANK 39
  • VISITORS COUNT

  • Verified International Academic Qualification from World Education Service (WES)

    Verified International Academic Qualification from World Education Service (WES)

  • Jobs

How to export the dumpfile default directory location in Oracle database 19C

Posted by Mir Sayeed Hassan on November 13th, 2024

How to export the dumpfile default directory location in Oracle database 19C

Check the database version

SYS> select name, status, open_mode, version from V$database, v$instance;

NAME       STATUS     OPEN_MODE       VERSION
-------------------------------------------------
ORA19CDB   OPEN      READ WRITE     19.0.0.0.0

The name of the default directory is “DATA_PUMP_DIR” and directory name convention as dumfile name “export.dmp” logfile name “export.log”

Note: No need to create the OS Level & DB level directory when you are using the default directory for dumpfile backup.

Identify the default directory in database

SYS> col directory_name for a20
SYS> col directory_path for a40
SYS> select owner, directory_name, directory_path from dba_directories where directory_name like '%DATA_PUMP_DIR';

OWNER    DIRECTORY_NAME                      DIRECTORY_PATH
---------- -------------------- ----------------------------------------
SYS     DATA_PUMP_DIR            /u01/app/oracle/admin/oradb19c/dpdump/

Start export of the schema “HASSAN” by using default directory location

[oracle@ora19cdb ~]$ expdp schemas=hassan

Export: Release 19.0.0.0.0 - Production on Wed Nov 13 05:37:14 2024
Version 19.18.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.

Username: / as sysdba

Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Starting "SYS"."SYS_EXPORT_SCHEMA_01": /******** AS SYSDBA schemas=hassan
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
Processing object type SCHEMA_EXPORT/STATISTICS/MARKER
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/PROCEDURE/PROCEDURE
Processing object type SCHEMA_EXPORT/PROCEDURE/ALTER_PROCEDURE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
. . exported "HASSAN"."BOWIE" 688.8 KB 10000 rows
. . exported "HASSAN"."ADD_PICTURE" 0 KB 0 rows
. . exported "HASSAN"."T1" 5.632 KB 9 rows
Master table "SYS"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYS_EXPORT_SCHEMA_01 is:
/u01/app/oracle/admin/oradb19c/dpdump/expdat.dmp
Job "SYS"."SYS_EXPORT_SCHEMA_01" successfully completed at Wed Nov 13 05:37:53 2024 elapsed 0 00:00:36

Verify the files place in default directory as shown below.

[oracle@ora19cdb ~]$ cd /u01/app/oracle/admin/oradb19c/dpdump/

[oracle@ora19cdb dpdump]$ ll
total 1092
-rw-r-----. 1 oracle oinstall 159 Jun 10 2023 dp.log
-rw-r-----. 1 oracle oinstall 1101824 Nov 13 05:37 expdat.dmp
-rw-r--r--. 1 oracle oinstall 1658 Nov 13 05:37 export.log
-rw-r--r--. 1 oracle oinstall 1772 Nov 13 05:27 hassan.log

=====Hence tested and verified in our test env======

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>