3.6 Examples of Using Oracle Data Pump Import
You can use these common scenario examples to learn how you can use Oracle Data Pump Import to move your data.
- Performing a Data-Only Table-Mode Import
See how to use Oracle Data Pump to perform a data-only table-mode import. - Performing a Schema-Mode Import
See how to use Oracle Data Pump to perform a schema-mode import. - Performing a Network-Mode Import
See how to use Oracle Data Pump to perform a network-mode import. - Using Wildcards in URL-Based Dumpfile Names
Oracle Data Pump simplifies importing multiple dump files into Oracle Autonomous Database from the Oracle Object Store Service by allowing wildcards for URL-based dumpfile names.
Parent topic: Oracle Data Pump Import
3.6.1 Performing a Data-Only Table-Mode Import
See how to use Oracle Data Pump to perform a data-only table-mode import.
In the example, the table is named employees
. It uses
the dump file created in "Performing a Table-Mode Export.".
The CONTENT=DATA_ONLY
parameter filters out any
database object definitions (metadata). Only table row data is loaded.
Example 3-1 Performing a Data-Only Table-Mode Import
> impdp hr TABLES=employees CONTENT=DATA_ONLY DUMPFILE=dpump_dir1:table.dmp
NOLOGFILE=YES
Related Topics
Parent topic: Examples of Using Oracle Data Pump Import
3.6.2 Performing a Schema-Mode Import
See how to use Oracle Data Pump to perform a schema-mode import.
The example is a schema-mode import of the dump file set created in "Performing a Schema-Mode Export".
Example 3-2 Performing a Schema-Mode Import
> impdp hr SCHEMAS=hr DIRECTORY=dpump_dir1 DUMPFILE=expschema.dmp
EXCLUDE=CONSTRAINT,REF_CONSTRAINT,INDEX TABLE_EXISTS_ACTION=REPLACE
The EXCLUDE
parameter filters the metadata that is imported. For the given mode of import, all the objects contained within the source, and all their dependent objects, are included except those specified in an EXCLUDE
statement. If an object is excluded, then all of its dependent objects are also excluded. The TABLE_EXISTS_ACTION=REPLACE
parameter tells Import to drop the table if it already exists and to then re-create and load it using the dump file contents.
Related Topics
Parent topic: Examples of Using Oracle Data Pump Import
3.6.3 Performing a Network-Mode Import
See how to use Oracle Data Pump to perform a network-mode import.
The network-mode import uses as its source the database specified by the
NETWORK_LINK
parameter.
Example 3-3 Network-Mode Import of Schemas
> impdp hr TABLES=employees REMAP_SCHEMA=hr:scott DIRECTORY=dpump_dir1
NETWORK_LINK=dblink
This example imports the employees
table from the hr
schema into the scott
schema. The dblink
references a source database that is different than the target database.
To remap the schema, user hr
must have the DATAPUMP_IMP_FULL_DATABASE
role on the local database and the DATAPUMP_EXP_FULL_DATABASE
role on the source database.
REMAP_SCHEMA
loads all the objects from the source schema into the target schema.
Related Topics
Parent topic: Examples of Using Oracle Data Pump Import
3.6.4 Using Wildcards in URL-Based Dumpfile Names
Oracle Data Pump simplifies importing multiple dump files into Oracle Autonomous Database from the Oracle Object Store Service by allowing wildcards for URL-based dumpfile names.
Example 3-4 Wildcards Used in a URL-based Filename
This example shows how to use wildcards in the file name for importing multiple dump files into Oracle Autonomous Database from the Oracle Object Store Service.
> impdp admin/password@ATPC1_high
directory=data_pump_dir credential=my_cred_name
dumpfile= https://objectstorage.example.com/v1/atpc/atpc_user/exp%u.dmp"
Note:
You cannot use wildcard characters in the bucket-name component of the URL.
Parent topic: Examples of Using Oracle Data Pump Import