You are on page 1of 38

8/9/13

Data Pump Import

Skip Headers Oracle Database Utilities 11g Release 2 (11.2) Part Number E10701-03

Home Book ContentsIndex Master Contact List Index Us


View PDF

Previous Next

3 Data Pump Import


This chapter describes the Oracle Data Pump Import utility (impdp). The following topics are discussed: What Is Data Pump Import? Invoking Data Pump Import Filtering During Import Operations Parameters Available in Import's Command-Line Mode Commands Available in Import's Interactive-Command Mode Examples of Using Data Pump Import Syntax Diagrams for Data Pump Import

What Is Data Pump Import?


Data Pump Import (hereinafter referred to as Import for ease of reading) is a utility for loading an export dump file set into a target system. The dump file set is made up of one or more disk files that contain table data, database object metadata, and control information. The files are written in a proprietary, binary format. During an import operation, the Data Pump Import utility uses these files to locate each database object in the dump file set. Import can also be used to load a target database directly from a source database with no intervening dump files. This is known as a network import. Data Pump Import enables you to specify whether a job should move a subset of the data and metadata from the dump file set or the source database (in the case of a network import), as determined by the import mode. This is done using data filters and metadata filters, which are implemented through Import commands. See "Filtering During Import Operations". To see some examples of the various ways in which you can use Import, refer to "Examples of Using Data Pump Import".

Invoking Data Pump Import


The Data Pump Import utility is invoked using the i m p d pcommand. The characteristics of the import operation are determined by the import parameters you specify. These parameters can be specified either on the command line or in a parameter file. Note: Do not invoke Import as S Y S D B A ,except at the request of Oracle technical support. S Y S D B Ais used internally and has specialized functions; its behavior is not the same as for general users. Note: Be aware that if you are performing a Data Pump Import into a table or tablespace created with the N O L O G G I N Gclause enabled, a redo log file may still be generated. The redo that is generated in such a case is generally for maintenance of the master table or related to underlying recursive space transactions, data dictionary changes, and index maintenance for indices on the table that require logging. The following sections contain more information about invoking Import: "Data Pump Import Interfaces" "Data Pump Import Modes" "Network Considerations"

Data Pump Import Interfaces


You can interact with Data Pump Import by using a command line, a parameter file, or an interactive-command mode. Command-Line Interface: Enables you to specify the Import parameters directly on the command line. For a complete description of the parameters available in the command-line interface, see "Parameters Available in Import's Command-Line Mode". Parameter File Interface: Enables you to specify command-line parameters in a parameter file. The only exception is the P A R F I L Eparameter because parameter files cannot be nested. The use of parameter files is recommended if you
oracle.su/docs/11g/server.112/e10701/dp_import.htm 1/38

8/9/13

Data Pump Import

are using parameters whose values require quotation marks. See "Use of Quotation Marks On the Data Pump Command Line". Interactive-Command Interface: Stops logging to the terminal and displays the Import prompt, from which you can enter various commands, some of which are specific to interactive-command mode. This mode is enabled by pressing Ctrl+C during an import operation started with the command-line interface or the parameter file interface. Interactive-command mode is also enabled when you attach to an executing or stopped job. For a complete description of the commands available in interactive-command mode, see "Commands Available in Import's Interactive-Command Mode".

Data Pump Import Modes


The import mode determines what is imported. The specified mode applies to the source of the operation, either a dump file set or another database if the N E T W O R K _ L I N Kparameter is specified. When the source of the import operation is a dump file set, specifying a mode is optional. If no mode is specified, then Import attempts to load the entire dump file set in the mode in which the export operation was run. The mode is specified on the command line, using the appropriate parameter. The available modes are described in the following sections: "Full Import Mode" "Schema Mode" "Table Mode" "Tablespace Mode" "Transportable Tablespace Mode" Note: When you import a dump file that was created by a full-mode export, the import operation attempts to copy the password for the S Y Saccount from the source database. This sometimes fails (for example, if the password is in a shared password file). If it does fail, then after the import completes, you must set the password for the S Y Saccount at the target database to a password of your choice. Full Import Mode A full import is specified using the F U L Lparameter. In full import mode, the entire content of the source (dump file set or another database) is loaded into the target database. This is the default for file-based imports. You must have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole if the source is another database. Cross-schema references are not imported for non-privileged users. For example, a trigger defined on a table within the importing user's schema, but residing in another user's schema, is not imported. The D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole is required on the target database and the D A T A P U M P _ E X P _ F U L L _ D A T A B A S E role is required on the source database if the N E T W O R K _ L I N Kparameter is used for a full import. See Also: "FULL" Schema Mode A schema import is specified using the S C H E M A Sparameter. In a schema import, only objects owned by the specified schemas are loaded. The source can be a full, table, tablespace, or schema-mode export dump file set or another database. If you have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole, then a list of schemas can be specified and the schemas themselves (including system privilege grants) are created in the database in addition to the objects contained within those schemas. Cross-schema references are not imported for non-privileged users unless the other schema is remapped to the current schema. For example, a trigger defined on a table within the importing user's schema, but residing in another user's schema, is not imported. See Also: "SCHEMAS" Table Mode A table-mode import is specified using the T A B L E Sparameter. In table mode, only the specified set of tables, partitions, and their dependent objects are loaded. The source can be a full, schema, tablespace, or table-mode export dump file set or another database. You must have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole to specify tables that are not in your own schema. You can use the transportable option during a table-mode import by specifying the T R A N P O R T A B L E = A L W A Y Sparameter with the T A B L E Sparameter. Note that this requires use of the N E T W O R K _ L I N Kparameter, as well. See Also:
oracle.su/docs/11g/server.112/e10701/dp_import.htm 2/38

8/9/13

Data Pump Import

"TABLES" "TRANSPORTABLE" "Using Data File Copying to Move Data" Tablespace Mode A tablespace-mode import is specified using the T A B L E S P A C E Sparameter. In tablespace mode, all objects contained within the specified set of tablespaces are loaded, along with the dependent objects. The source can be a full, schema, tablespace, or table-mode export dump file set or another database. For unprivileged users, objects not remapped to the current schema will not be processed. See Also: "TABLESPACES" Transportable Tablespace Mode A transportable tablespace import is specified using the T R A N S P O R T _ T A B L E S P A C E Sparameter. In transportable tablespace mode, the metadata from a transportable tablespace export dump file set or from another database is loaded. The datafiles, specified by the T R A N S P O R T _ D A T A F I L E Sparameter, must be made available from the source system for use in the target database, typically by copying them over to the target system. Encrypted columns are not supported in transportable tablespace mode. This mode requires the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole. Note: You cannot export transportable tablespaces and then import them into a database at a lower release level. The target database must be at the same or higher release level as the source database. See Also: "TRANSPORT_TABLESPACES" "TRANSPORT_FULL_CHECK" "TRANSPORT_DATAFILES"

Network Considerations
You can specify a connect identifier in the connect string when you invoke the Data Pump Import utility. This identifier can specify a database instance that is different from the current instance identified by the current Oracle System ID (SID). The connect identifier can be an Oracle*Net connect descriptor or a name that maps to a connect descriptor. This requires an active listener (to start the listener, enter l s n r c t ls t a r t ) that can be located using the connect descriptor. The following example invokes Import for user h r , using the connect descriptor named i n s t 1 :
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r . d m pT A B L E S = e m p l o y e e s I m p o r t :R e l e a s e1 1 . 2 . 0 . 1 . 0-P r o d u c t i o no nT u eJ u l1 41 1 : 1 1 : 4 52 0 0 9 C o p y r i g h t( c )1 9 8 2 ,2 0 0 9 ,O r a c l ea n d / o ri t sa f f i l i a t e s . A l lr i g h t sr e s e r v e d . P a s s w o r d :p a s s w o r d @ i n s t 1 C o n n e c t e dt o :O r a c l eD a t a b a s e1 1 gE n t e r p r i s eE d i t i o nR e l e a s e1 1 . 2 . 0 . 1 . 0-P r o d u c t i o n W i t ht h eP a r t i t i o n i n g ,D a t aM i n i n ga n dR e a lA p p l i c a t i o nT e s t i n go p t i o n s

The local Import client connects to the database instance identified by the connect descriptor i n s t 1(a simple net service name, usually defined in a t n s n a m e s . o r afile), to import the data from the dump file set to that database. Specifying a connect identifier when you invoke the Import utility is different than performing an import operation using the N E T W O R K _ L I N Kparameter. Do not confuse the two. When you start an import operation and specify a connect identifier, the local Import client connects to the database instance identified by the connect identifier, retrieves data from that database instance, and writes it to that database instance. There is no dump file set involved. When you perform an import using the N E T W O R K _ L I N Kparameter, the import is performed over a network link. See Also: "NETWORK_LINK" Oracle Database Net Services Administrator's Guide Oracle Database Heterogeneous Connectivity User's Guide

Filtering During Import Operations


Data Pump Import provides data and metadata filtering capability to help you limit the type of information that is imported.

oracle.su/docs/11g/server.112/e10701/dp_import.htm

3/38

8/9/13

Data Pump Import

Data Filters
Data specific filtering is implemented through the Q U E R Yand S A M P L Eparameters, which specify restrictions on the table rows that are to be imported. Data filtering can also occur indirectly because of metadata filtering, which can include or exclude table objects along with any associated row data. Each data filter can only be specified once per table and once per job. If different filters using the same name are applied to both a particular table and to the whole job, the filter parameter supplied for the specific table will take precedence.

Metadata Filters
Data Pump Import provides much greater metadata filtering capability than was provided by the original Import utility. Metadata filtering is implemented through the E X C L U D Eand I N C L U D Eparameters. The E X C L U D Eand I N C L U D Eparameters are mutually exclusive. Metadata filters identify a set of objects to be included or excluded from a Data Pump operation. For example, you could request a full import, but without Package Specifications or Package Bodies. To use filters correctly and to get the results you expect, remember that dependent objects of an identified object are processed along with the identified object. For example, if a filter specifies that a package is to be included in an operation, then grants upon that package will also be included. Likewise, if a table is excluded by a filter, then indexes, constraints, grants, and triggers upon the table will also be excluded by the filter. If multiple filters are specified for an object type, an implicit A N Doperation is applied to them. That is, objects participating in the job must pass all of the filters applied to their object types. The same filter name can be specified multiple times within a job. To see which objects can be filtered, you can query the following views: D A T A B A S E _ E X P O R T _ O B J E C T Sfor Full-mode imports, S C H E M A _ E X P O R T _ O B J E C T Sfor schema-mode imports, and T A B L E _ E X P O R T _ O B J E C T Sfor table-mode and tablespace-mode imports. Note that full object path names are determined by the export mode, not by the import mode. See Also: "Metadata Filters" for an example of using filtering The Import "EXCLUDE" parameter The Import "INCLUDE" parameter

Parameters Available in Import's Command-Line Mode


This section describes the parameters available in the command-line mode of Data Pump Import. Be sure to read the following sections before using the Import parameters: Specifying Import Parameters Use of Quotation Marks On the Data Pump Command Line Many of the descriptions include an example of how to use the parameter. For background information on setting up the necessary environment to run the examples, see: Using the Import Parameter Examples Specifying Import Parameters For parameters that can have multiple values specified, the values can be separated by commas or by spaces. For example, you could specify T A B L E S = e m p l o y e e s , j o b sor T A B L E S = e m p l o y e e sj o b s . For every parameter you enter, you must enter an equal sign (=) and a value. Data Pump has no other way of knowing that the previous parameter specification is complete and a new parameter specification is beginning. For example, in the following command line, even though N O L O G F I L Eis a valid parameter, it would be interpreted as another dump file name for the D U M P F I L Eparameter:
i m p d pD I R E C T O R Y = d p u m p d i rD U M P F I L E = t e s t . d m pN O L O G F I L ET A B L E S = e m p l o y e e s

This would result in two dump files being created, t e s t . d m pand n o l o g f i l e . d m p . To avoid this, specify either N O L O G F I L E = yor N O L O G F I L E = n . Use of Quotation Marks On the Data Pump Command Line Some operating systems treat quotation marks as special characters and will therefore not pass them to an application unless they are preceded by an escape character, such as the backslash (\). This is true both on the command line and within parameter files. Some operating systems may require an additional set of single or double quotation marks on the command line around the entire parameter value containing the special characters. The following examples are provided to illustrate these concepts. Be aware that they may not apply to your particular operating system and that this documentation cannot anticipate the operating environments unique to each user. Suppose you specify the T A B L E Sparameter in a parameter file, as follows:
T A B L E S=\ " M i x e d C a s e T a b l e N a m e \ "

oracle.su/docs/11g/server.112/e10701/dp_import.htm

4/38

8/9/13

Data Pump Import

If you were to specify that on the command line, some operating systems would require that it be surrounded by single quotation marks, as follows:
T A B L E S-' \ " M i x e d C a s e T a b l e N a m e \ " '

To avoid having to supply additional quotation marks on the command line, Oracle recommends the use of parameter files. Also, note that if you use a parameter file and the parameter value being specified does not have quotation marks as the first character in the string (for example, T A B L E S = s c o t t . " E m P " ), then the use of escape characters may not be necessary on some systems. See Also: The Import "PARFILE" parameter "Default Locations for Dump, Log, and SQL Files" for information about creating default directory objects "Examples of Using Data Pump Export" Oracle Database Sample Schemas Your Oracle operating system-specific documentation for information about how special and reserved characters are handled on your system Using the Import Parameter Examples If you try running the examples that are provided for each parameter, be aware of the following: After you enter the username and parameters as shown in the example, Import is started and you are prompted for a password before a database connection is made:
I m p o r t :R e l e a s e1 1 . 2 . 0 . 1 . 0-P r o d u c t i o no nT u eJ u l1 41 1 : 3 5 : 4 52 0 0 9 C o p y r i g h t( c )1 9 8 2 ,2 0 0 9 ,O r a c l ea n d / o ri t sa f f i l i a t e s . A l lr i g h t sr e s e r v e d . P a s s w o r d :p a s s w o r d C o n n e c t e dt o :O r a c l eD a t a b a s e1 1 gE n t e r p r i s eE d i t i o nR e l e a s e1 1 . 2 . 0 . 1 . 0-P r o d u c t i o n W i t ht h eP a r t i t i o n i n g ,D a t aM i n i n ga n dR e a lA p p l i c a t i o nT e s t i n go p t i o n s

Most of the examples use the sample schemas of the seed database, which is installed by default when you install Oracle Database. In particular, the human resources (h r ) schema is often used. Examples that specify a dump file to import assume that the dump file exists. Wherever possible, the examples use dump files that are generated when you run the Export examples in Chapter 2. The examples assume that the directory objects, d p u m p _ d i r 1and d p u m p _ d i r 2 , already exist and that R E A Dand W R I T Eprivileges have been granted to the h rschema for these directory objects. See "Default Locations for Dump, Log, and SQL Files" for information about creating directory objects and assigning privileges to them. Some of the examples require the D A T A P U M P _ E X P _ F U L L _ D A T A B A S Eand D A T A P U M P _ I M P _ F U L L _ D A T A B A S Eroles. The examples assume that the h rschema has been granted these roles. If necessary, ask your DBA for help in creating these directory objects and assigning the necessary privileges and roles. Syntax diagrams of these parameters are provided in "Syntax Diagrams for Data Pump Import". Unless specifically noted, these parameters can also be specified in a parameter file.

ATTACH
Default: current job in user's schema, if there is only one running job. Purpose Attaches the client session to an existing import job and automatically places you in interactive-command mode. Syntax and Description
A T T A C H[ = [ s c h e m a _ n a m e . ] j o b _ n a m e ]

Specify a s c h e m a _ n a m eif the schema to which you are attaching is not your own. You must have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole to do this. Aj o b _ n a m edoes not have to be specified if only one running job is associated with your schema and the job is active. If the job you are attaching to is stopped, you must supply the job name. To see a list of Data Pump job names, you can query the D B A _ D A T A P U M P _ J O B Sview or the U S E R _ D A T A P U M P _ J O B Sview. When you are attached to the job, Import displays a description of the job and then displays the Import prompt. Restrictions When you specify the A T T A C Hparameter, the only other Data Pump parameter you can specify on the command line is E N C R Y P T I O N _ P A S S W O R D . If the job you are attaching to was initially started using an encryption password, then when you attach to the job you must again enter the E N C R Y P T I O N _ P A S S W O R Dparameter on the command line to re-specify that password. The only
oracle.su/docs/11g/server.112/e10701/dp_import.htm 5/38

8/9/13

Data Pump Import

exception to this is if the job was initially started with the E N C R Y P T I O N = E N C R Y P T E D _ C O L U M N S _ O N L Yparameter. In that case, the encryption password is not needed when attaching to the job. You cannot attach to a job in another schema unless it is already running. If the dump file set or master table for the job have been deleted, the attach operation will fail. Altering the master table in any way will lead to unpredictable results. Example The following is an example of using the A T T A C Hparameter.
>i m p d ph rA T T A C H = i m p o r t _ j o b

This example assumes that a job named i m p o r t _ j o bexists in the h rschema. See Also: "Commands Available in Import's Interactive-Command Mode"

CLUSTER
Default: Y Purpose Determines whether Data Pump can use Oracle Real Application Clusters (RAC) resources and start workers on other Oracle RAC instances. Syntax and Description
C L U S T E R = [ Y|N ]

To force Data Pump Import to use only the instance where the job is started and to replicate pre-Oracle Database 11g release 2 (11.2) behavior, specify C L U S T E R = N . To specify a specific, existing service and constrain worker processes to run only on instances defined for that service, use the S E R V I C E _ N A M Eparameter with the C L U S T E R = Yparameter. Use of the C L U S T E Rparameter may affect performance because there is some additional overhead in distributing the import job across Oracle RAC instances. For small jobs, it may be better to specify C L U S T E R = Nto constrain the job to run on the instance where it is started. Jobs whose performance benefits the most from using the C L U S T E Rparameter are those involving large amounts of data. See Also: "SERVICE_NAME" "Oracle RAC Considerations" Example
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1S C H E M A S = h rC L U S T E R = NP A R A L L E L = 3N E T W O R K _ L I N K = d b s 1

This example performs a schema-mode import of the h rschema. Because C L U S T E R = Nis used, the job uses only the instance where it is started. Up to 3 parallel processes can be used. The N E T W O R K _ L I N Kvalue of d b s 1would be replaced with the name of the source database from which you were importing data. (Note that there is no dump file generated because this is a network import.) The N E T W O R K _ L I N Kparameter is simply being used as part of the example. It is not required when using the C L U S T E R parameter.

CONTENT
Default: A L L Purpose Enables you to filter what is loaded during the import operation. Syntax and Description
C O N T E N T = { A L L|D A T A _ O N L Y|M E T A D A T A _ O N L Y } A L Lloads any data and

metadata contained in the source. This is the default. existing tables; no database objects are created. table row data is loaded. Be aware that if you specify from the dump file are locked after the

D A T A _ O N L Yl oads only table row data into

M E T A D A T A _ O N L Yloads only database object definitions; no

C O N T E N T = M E T A D A T A _ O N L Y , then any index or table statistics imported

import operation is complete. Restrictions


oracle.su/docs/11g/server.112/e10701/dp_import.htm 6/38

8/9/13

Data Pump Import

The C O N T E N T = M E T A D A T A _ O N L Yparameter and value cannot be used in conjunction with the T R A N S P O R T _ T A B L E S P A C E S(transportable-tablespace-mode) parameter or the Q U E R Yparameter. The C O N T E N T = A L Land C O N T E N T = D A T A _ O N L Yparameter and values cannot be used in conjunction with the S Q L F I L Eparameter. Example The following is an example of using the C O N T E N Tparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pC O N T E N T = M E T A D A T A _ O N L Y

This command will execute a full import that will load only the metadata in the e x p f u l l . d m pdump file. It executes a full import because that is the default for file-based imports in which no import mode is specified.

DATA_OPTIONS
Default: There is no default. If this parameter is not used, then the special data handling options it provides simply do not take effect. Purpose The D A T A _ O P T I O N Sparameter provides options for how to handle certain types of data during exports and imports. For import operations, the only valid options for the D A T A _ O P T I O N Sparameter are D I S A B L E _ A P P E N D _ H I N Tand S K I P _ C O N S T R A I N T _ E R R O R S . Syntax and Description
D A T A _ O P T I O N S={ D I S A B L E _ A P P E N D _ H I N T|S K I P _ C O N S T R A I N T _ E R R O R S } D I S A B L E _ A P P E N D _ H I N T-

Specifies that you do not want the import operation to use the A P P E N Dhint while loading the data object. Disabling the A P P E N Dhint can be useful if there is a small set of data objects to load that already exist in the database and some other application may be concurrently accessing one or more of the data objects. If D I S A B L E _ A P P E N D _ H I N Tis not set, then the default behavior is to use the A P P E N Dhint for loading data objects.
S K I P _ C O N S T R A I N T _ E R R O R S-

affects how non-deferred constraint violations are handled while a data object (table, partition, or subpartition) is being loaded. It has no effect on the load if deferred constraint violations are encountered. Deferred constraint violations always cause the entire load to be rolled back. The S K I P _ C O N S T R A I N T _ E R R O R Soption specifies that you want the import operation to proceed even if nondeferred constraint violations are encountered. It logs any rows that cause non-deferred constraint violations, but does not stop the load for the data object experiencing the violation. If S K I P _ C O N S T R A I N T _ E R R O R Sis not set, then the default behavior is to roll back the entire load of the data object on which non-deferred constraint violations are encountered. Restrictions If D I S A B L E _ A P P E N D _ H I N Tis used, it can take longer for data objects to load. If S K I P _ C O N S T R A I N T _ E R R O R Sis used and if a data object has unique indexes or constraints defined on it at the time of the load, then the A P P E N Dhint will not be used for loading that data object. Therefore, loading such data objects will take longer when the S K I P _ C O N S T R A I N T _ E R R O R Soption is used. Even if S K I P _ C O N S T R A I N T _ E R R O R Sis specified, it is not used unless a data object is being loaded using the external table access method. Example This example shows a data-only table mode import with S K I P _ C O N S T R A I N T _ E R R O R Senabled:
>i m p d ph rT A B L E S = e m p l o y e e sC O N T E N T = D A T A _ O N L Y D U M P F I L E = d p u m p _ d i r 1 : t a b l e . d m pD A T A _ O P T I O N S = s k i p _ c o n s t r a i n t _ e r r o r s

If any non-deferred constraint violations are encountered during this import operation, they will be logged and the import will continue on to completion.

DIRECTORY
Default: D A T A _ P U M P _ D I R Purpose Specifies the default location in which the import job can find the dump file set and where it should create log and SQL files. Syntax and Description
D I R E C T O R Y = d i r e c t o r y _ o b j e c t

The d i r e c t o r y _ o b j e c tis the name of a database directory object (not the file path of an actual directory). Upon installation, privileged users have access to a default directory object named D A T A _ P U M P _ D I R . Users with access to
oracle.su/docs/11g/server.112/e10701/dp_import.htm 7/38

8/9/13
D A T A _ P U M P _ D I Rneed

Data Pump Import

not use the D I R E C T O R Yparameter at all.

A directory object specified on the D U M P F I L E ,L O G F I L E , or S Q L F I L Eparameter overrides any directory object that you specify for the D I R E C T O R Yparameter. You must have Read access to the directory used for the dump file set and Write access to the directory used to create the log and SQL files. Example The following is an example of using the D I R E C T O R Yparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p L O G F I L E = d p u m p _ d i r 2 : e x p f u l l . l o g

This command results in the import job looking for the e x p f u l l . d m pdump file in the directory pointed to by the d p u m p _ d i r 1directory object. The d p u m p _ d i r 2directory object specified on the L O G F I L Eparameter overrides the D I R E C T O R Yparameter so that the log file is written to d p u m p _ d i r 2 . See Also: "Default Locations for Dump, Log, and SQL Files" for more information about default directory objects "Oracle RAC Considerations" Oracle Database SQL Language Reference for more information about the C R E A T ED I R E C T O R Ycommand

DUMPFILE
Default: e x p d a t .d m p Purpose Specifies the names and optionally, the directory objects of the dump file set that was created by Export. Syntax and Description
D U M P F I L E = [ d i r e c t o r y _ o b j e c t : ] f i l e _ n a m e[ ,. . . ]

The d i r e c t o r y _ o b j e c tis optional if one has already been established by the D I R E C T O R Yparameter. If you do supply a value here, it must be a directory object that already exists and that you have access to. A database directory object that is specified as part of the D U M P F I L Eparameter overrides a value specified by the D I R E C T O R Yparameter. The f i l e _ n a m eis the name of a file in the dump file set. The file names can also be templates that contain the substitution variable, % U . If % Uis used, Import examines each file that matches the template (until no match is found) to locate all files that are part of the dump file set. The % Uexpands to a 2-digit incrementing integer starting with 01. Sufficient information is contained within the files for Import to locate the entire set, provided the file specifications in the D U M P F I L Eparameter encompass the entire set. The files are not required to have the same names, locations, or order that they had at export time. Example The following is an example of using the Import D U M P F I L Eparameter. You can create the dump files used in this example by running the example provided for the Export D U M P F I L Eparameter. See "DUMPFILE".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = d p u m p _ d i r 2 : e x p 1 . d m p ,e x p 2 % U . d m p

Because a directory object (d p u m p _ d i r 2 ) is specified for the e x p 1 . d m pdump file, the import job will look there for the file. It will also look in d p u m p _ d i r 1for dump files of the form e x p 2 n n . d m p . The log file will be written to d p u m p _ d i r 1 . See Also: "File Allocation" "Performing a Data-Only Table-Mode Import"

ENCRYPTION_PASSWORD
Default: There is no default; the value is user-supplied. Purpose Specifies a password for accessing encrypted column data in the dump file set. This prevents unauthorized access to an encrypted dump file set. Syntax and Description
E N C R Y P T I O N _ P A S S W O R D=p a s s w o r d

This parameter is required on an import operation if an encryption password was specified on the export operation. The password that is specified must be the same one that was specified on the export operation. Restrictions This parameter is valid only in the Enterprise Edition of Oracle Database 11g.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 8/38

8/9/13

Data Pump Import

The E N C R Y P T I O N _ P A S S W O R Dparameter is not valid if the dump file set was created using the transparent mode of encryption. The E N C R Y P T I O N _ P A S S W O R Dparameter is not valid for network import jobs. Encryption attributes for all columns must match between the exported table definition and the target table. For example, suppose you have a table, E M P , and one of its columns is named E M P N O . Both of the following situations would result in an error because the encryption attribute for the E M Pcolumn in the source table would not match the encryption attribute for the E M Pcolumn in the target table: The E M Ptable is exported with the E M P N Ocolumn being encrypted, but before importing the table you remove the encryption attribute from the E M P N Ocolumn. The E M Ptable is exported without the E M P N Ocolumn being encrypted, but before importing the table you enable encryption on the E M P N Ocolumn. Example In the following example, the encryption password, 1 2 3 4 5 6 , must be specified because it was specified when the d p c d 2 b e 1 . d m pdump file was created (see "ENCRYPTION_PASSWORD").
>i m p d ph rT A B L E S = e m p l o y e e _ s _ e n c r y p tD I R E C T O R Y = d p u m p _ d i r D U M P F I L E = d p c d 2 b e 1 . d m pE N C R Y P T I O N _ P A S S W O R D = 1 2 3 4 5 6

During the import operation, any columns in the e m p l o y e e _ s _ e n c r y p ttable that were encrypted during the export operation are decrypted before being imported.

ESTIMATE
Default: B L O C K S Purpose Instructs the source system in a network import operation to estimate how much data will be generated. Syntax and Description
E S T I M A T E = { B L O C K S|S T A T I S T I C S }

The valid choices for the E S T I M A T Eparameter are as follows:


B L O C K S-

The estimate is calculated by multiplying the number of database blocks used by the source objects times the appropriate block sizes.
S T A T I S T I C S-

The estimate is calculated using statistics for each table. For this method to be as accurate as possible, all tables should have been analyzed recently. The estimate that is generated can be used to determine a percentage complete throughout the execution of the import job. Restrictions The Import E S T I M A T Eparameter is valid only if the N E T W O R K _ L I N Kparameter is also specified. When the import source is a dump file set, the amount of data to be loaded is already known, so the percentage complete is automatically calculated. The estimate may be inaccurate if the Q U E R Y ,S A M P L E , or R E M A P _ D A T Aparameter is used. Example In the following example, s o u r c e _ d a t a b a s e _ l i n kwould be replaced with the name of a valid link to the source database.
>i m p d ph rT A B L E S = j o b _ h i s t o r yN E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k D I R E C T O R Y = d p u m p _ d i r 1E S T I M A T E = s t a t i s t i c s

The j o b _ h i s t o r ytable in the h rschema is imported from the source database. A log file is created by default and written to the directory pointed to by the d p u m p _ d i r 1directory object. When the job begins, an estimate for the job is calculated based on table statistics.

EXCLUDE
Default: There is no default Purpose Enables you to filter the metadata that is imported by specifying objects and object types to exclude from the import job. Syntax and Description
E X C L U D E = o b j e c t _ t y p e [ : n a m e _ c l a u s e ][ ,. . . ]

For the given mode of import, all object types contained within the source (and their dependents) are included, except those specified in an E X C L U D Estatement. If an object is excluded, all of its dependent objects are also excluded. For example, excluding a table will also exclude all indexes and triggers on the table.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 9/38

8/9/13

Data Pump Import

The n a m e _ c l a u s eis optional. It allows fine-grained selection of specific objects within an object type. It is a SQL expression used as a filter on the object names of the type. It consists of a SQL operator and the values against which the object names of the specified type are to be compared. The name clause applies only to object types whose instances have names (for example, it is applicable to T A B L Eand V I E W , but not to G R A N T ). The optional name clause must be separated from the object type with a colon and enclosed in double quotation marks, because single quotation marks are required to delimit the name strings. For example, you could set E X C L U D E = I N D E X : " L I K E' D E P T % ' "to exclude all indexes whose names start with d e p t . The name that you supply for the n a m e _ c l a u s emust exactly match, including upper and lower casing, an existing object in the database. For example, if the n a m e _ c l a u s eyou supply is for a table named E M P L O Y E E S , there must be an existing table named E M P L O Y E E Susing all upper case. If the n a m e _ c l a u s ewere supplied as E m p l o y e e sor e m p l o y e e sor any other variation, the table would not be found. More than one E X C L U D Estatement can be specified. Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. See Also: "Use of Quotation Marks On the Data Pump Command Line" As explained in the following sections, you should be aware of the effects of specifying certain objects for exclusion, in particular, C O N S T R A I N T ,G R A N T , and U S E R . Excluding Constraints The following constraints cannot be excluded:
N O TN U L Lconstraints.

Constraints needed for the table to be created and loaded successfully (for example, primary key constraints for index-organized tables or R E FS C O P Eand W I T HR O W I Dconstraints for tables with R E Fcolumns). This means that the following E X C L U D Estatements will be interpreted as follows:
E X C L U D E = C O N S T R A I N Twill exclude all nonreferential constraints,

except for N O TN U L Lconstraints and any

constraints needed for successful table creation and loading.


E X C L U D E = R E F _ C O N S T R A I N Twill exclude referential integrity (foreign key) constraints.

Excluding Grants and Users Specifying E X C L U D E = G R A N Texcludes object grants on all object types and system privilege grants. Specifying E X C L U D E = U S E Rexcludes only the definitions of users, not the objects contained within users' schemas. To exclude a specific user and all objects of that user, specify a command such as the following, where h ris the schema name of the user you want to exclude.
i m p d pF U L L = YD U M P F I L E = e x p f u l l . d m pE X C L U D E = S C H E M A : " = ' H R ' "

Note that in this situation, an import mode of F U L Lis specified. If no mode were specified, then the default mode, S C H E M A S , would be used. This would cause an error because the command would indicate that the schema should be both imported and excluded at the same time. If you try to exclude a user by using a statement such as E X C L U D E =U S E R :"= 'H R '", only C R E A T EU S E Rh rDDL statements will be excluded, and you may not get the results you expect. Restrictions The E X C L U D Eand I N C L U D Eparameters are mutually exclusive. Example Assume the following is in a parameter file, e x c l u d e . p a r , being used by a DBA or some other user with the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole. (If you want to try the example, you will need to create this file.)
E X C L U D E = F U N C T I O N E X C L U D E = P R O C E D U R E E X C L U D E = P A C K A G E E X C L U D E = I N D E X : " L I K E' E M P % '"

You could then issue the following command. You can create the e x p f u l l . d m pdump file used in this command by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ps y s t e mD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pP A R F I L E = e x c l u d e . p a r

All data from the e x p f u l l . d m pdump file will be loaded except for functions, procedures, packages, and indexes whose names start with e m p . See Also: "Filtering During Import Operations" for more information about the effects of using the E X C L U D Eparameter
oracle.su/docs/11g/server.112/e10701/dp_import.htm 10/38

8/9/13

Data Pump Import

FLASHBACK_SCN
Default: There is no default Purpose Specifies the system change number (SCN) that Import will use to enable the Flashback utility. Syntax and Description
F L A S H B A C K _ S C N = s c n _ n u m b e r

The import operation is performed with data that is consistent as of the specified s c n _ n u m b e r . Note: If you are on a logical standby system, the F L A S H B A C K _ S C Nparameter is ignored because SCNs are selected by logical standby. See Oracle Data Guard Concepts and Administration for information about logical standby databases. Restrictions The F L A S H B A C K _ S C Nparameter is valid only when the N E T W O R K _ L I N Kparameter is also specified. The F L A S H B A C K _ S C Nparameter pertains only to the Flashback Query capability of Oracle Database. It is not applicable to Flashback Database, Flashback Drop, or Flashback Data Archive.
F L A S H B A C K _ S C Nand F L A S H B A C K _ T I M Eare mutually exclusive.

Example The following is an example of using the F L A S H B A C K _ S C Nparameter.


>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1F L A S H B A C K _ S C N = 1 2 3 4 5 6 N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k

The s o u r c e _ d a t a b a s e _ l i n kin this example would be replaced with the name of a source database from which you were importing data.

FLASHBACK_TIME
Default: There is no default Purpose Specifies the system change number (SCN) that Import will use to enable the Flashback utility. Syntax and Description
F L A S H B A C K _ T I M E = " T O _ T I M E S T A M P ( ) "

The SCN that most closely matches the specified time is found, and this SCN is used to enable the Flashback utility. The import operation is performed with data that is consistent as of this SCN. Because the T O _ T I M E S T A M Pvalue is enclosed in quotation marks, it would be best to put this parameter in a parameter file. See "Use of Quotation Marks On the Data Pump Command Line". Note: If you are on a logical standby system, the F L A S H B A C K _ T I M Eparameter is ignored because SCNs are selected by logical standby. See Oracle Data Guard Concepts and Administration for information about logical standby databases. Restrictions This parameter is valid only when the N E T W O R K _ L I N Kparameter is also specified. The F L A S H B A C K _ T I M Eparameter pertains only to the flashback query capability of Oracle Database. It is not applicable to Flashback Database, Flashback Drop, or Flashback Data Archive.
F L A S H B A C K _ T I M Eand F L A S H B A C K _ S C Nare mutually exclusive.

Example You can specify the time in any format that the D B M S _ F L A S H B A C K . E N A B L E _ A T _ T I M Eprocedure accepts,. For example, suppose you have a parameter file, flashback_imp.par, that contains the following:
F L A S H B A C K _ T I M E = " T O _ T I M E S T A M P ( ' 2 5 0 8 2 0 0 81 4 : 3 5 : 0 0 ' ,' D D M M Y Y Y YH H 2 4 : M I : S S ' ) "

You could then issue the following command:


>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1P A R F I L E = f l a s h b a c k _ i m p . p a rN E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k

The import operation will be performed with data that is consistent with the SCN that most closely matches the specified time. See Also: Oracle Database Advanced Application Developer's Guide for information about using flashback
oracle.su/docs/11g/server.112/e10701/dp_import.htm 11/38

8/9/13

Data Pump Import

FULL
Default: Y Purpose Specifies that you want to perform a full database import. Syntax and Description
F U L L = y

A value of F U L L = yindicates that all data and metadata from the source (either a dump file set or another database) is imported. Filtering can restrict what is imported using this import mode (see "Filtering During Import Operations"). If the N E T W O R K _ L I N Kparameter is used, the U S E R I Dthat is executing the import job has the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole on the target database, then that user must also have the D A T A P U M P _ E X P _ F U L L _ D A T A B A S Erole on the source database. If you are an unprivileged user importing from a file, only schemas that map to your own schema are imported.
F U L Lis the default mode when you are performing a file-based

import.

Example The following is an example of using the F U L Lparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD U M P F I L E = d p u m p _ d i r 1 : e x p f u l l . d m pF U L L = y L O G F I L E = d p u m p _ d i r 2 : f u l l _ i m p . l o g

This example imports everything from the e x p f u l l . d m pdump file. In this example, a D I R E C T O R Yparameter is not provided. Therefore, a directory object must be provided on both the D U M P F I L Eparameter and the L O G F I L Eparameter. The directory objects can be different, as shown in this example.

HELP
Default: n Purpose Displays online help for the Import utility. Syntax and Description
H E L P = y

If H E L P =yis specified, Import displays a summary of all Import command-line parameters and interactive commands. Example
>i m p d pH E L P=y

This example will display a brief description of all Import parameters and commands.

INCLUDE
Default: There is no default Purpose Enables you to filter the metadata that is imported by specifying objects and object types for the current import mode. Syntax and Description
I N C L U D E=o b j e c t _ t y p e [ : n a m e _ c l a u s e ][ ,. . . ]

Only object types in the source (and their dependents) that are explicitly specified in the I N C L U D Estatement are imported. The n a m e _ c l a u s eis optional. It allows fine-grained selection of specific objects within an object type. It is a SQL expression used as a filter on the object names of the type. It consists of a SQL operator and the values against which the object names of the specified type are to be compared. The name clause applies only to object types whose instances have names (for example, it is applicable to T A B L E , but not to G R A N T ). The optional name clause must be separated from the object type with a colon and enclosed in double quotation marks, because single quotation marks are required to delimit the name strings. The name that you supply for the n a m e _ c l a u s emust exactly match, including upper and lower casing, an existing object in the database. For example, if the n a m e _ c l a u s eyou supply is for a table named E M P L O Y E E S , there must be an existing table named E M P L O Y E E Susing all upper case. If the n a m e _ c l a u s ewere supplied as E m p l o y e e sor e m p l o y e e sor any other variation, the table would not be found. More than one I N C L U D Estatement can be specified.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 12/38

8/9/13

Data Pump Import

Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. See "Use of Quotation Marks On the Data Pump Command Line". To see a list of valid paths for use with the I N C L U D Eparameter, you can query the following views: D A T A B A S E _ E X P O R T _ O B J E C T Sfor Full mode, S C H E M A _ E X P O R T _ O B J E C T Sfor schema mode, and T A B L E _ E X P O R T _ O B J E C T Sfor table and tablespace mode. Restrictions The I N C L U D Eand E X C L U D Eparameters are mutually exclusive. Example Assume the following is in a parameter file, i m p _ i n c l u d e . p a r , being used by a DBA or some other user with the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole:
I N C L U D E = F U N C T I O N I N C L U D E = P R O C E D U R E I N C L U D E = P A C K A G E I N C L U D E = I N D E X : " L I K E' E M P % '"

You can then issue the following command:


>i m p d ps y s t e mS C H E M A S = h rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p P A R F I L E = i m p _ i n c l u d e . p a r

You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L L parameter. See "FULL". The Import operation will load only functions, procedures, and packages from the h rschema and indexes whose names start with E M P . Although this is a privileged-mode import (the user must have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole), the schema definition is not imported, because the U S E Robject type was not specified in an I N C L U D Estatement.

JOB_NAME
Default: system-generated name of the form S Y S _ < I M P O R To rS Q L F I L E > _ < m o d e > _ N N Purpose The job name is used to identify the import job in subsequent actions, such as when the A T T A C Hparameter is used to attach to a job, or to identify the job via the D B A _ D A T A P U M P _ J O B Sor U S E R _ D A T A P U M P _ J O B Sviews. The job name becomes the name of the master table in the current user's schema. The master table controls the import job. Syntax and Description
J O B _ N A M E = j o b n a m e _ s t r i n g

The j o b n a m e _ s t r i n gspecifies a name of up to 30 bytes for this import job. The bytes must represent printable characters and spaces. If spaces are included, the name must be enclosed in single quotation marks (for example, 'Thursday Import'). The job name is implicitly qualified by the schema of the user performing the import operation. The default job name is system-generated in the form S Y S _ I M P O R T _ m o d e _ N Nor S Y S _ S Q L F I L E _ m o d e _ N N , where N N expands to a 2-digit incrementing integer starting at 01. An example of a default name is ' S Y S _ I M P O R T _ T A B L E S P A C E _ 0 2 '. Example The following is an example of using the J O B _ N A M Eparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pJ O B _ N A M E = i m p j o b 0 1

LOGFILE
Default: i m p o r t .l o g Purpose Specifies the name, and optionally, a directory object, for the log file of the import job. Syntax and Description
L O G F I L E = [ d i r e c t o r y _ o b j e c t : ] f i l e _ n a m e

If you specify a d i r e c t o r y _ o b j e c t , it must be one that was previously established by the DBA and that you have access to. This overrides the directory object specified with the D I R E C T O R Yparameter. The default behavior is to create i m p o r t .l o gin the directory referenced by the directory object specified in the D I R E C T O R Yparameter. If the f i l e _ n a m eyou specify already exists, it will be overwritten. All messages regarding work in progress, work completed, and errors encountered are written to the log file. (For a realtime status of the job, use the S T A T U Scommand in interactive mode.) A log file is always created unless the N O L O G F I L Eparameter is specified. As with the dump file set, the log file is relative to
oracle.su/docs/11g/server.112/e10701/dp_import.htm 13/38

8/9/13

Data Pump Import

the server and not the client. Note: Data Pump Import writes the log file using the database character set. If your client N L S _ L A N Genvironment sets up a different client character set from the database character set, then it is possible that table names may be different in the log file than they are when displayed on the client output screen. Restrictions To perform a Data Pump Import using Oracle Automatic Storage Management (Oracle ASM), you must specify a L O G F I L Eparameter that includes a directory object that does not include the Oracle ASM + notation. That is, the log file must be written to a disk file, and not written into the Oracle ASM storage. Alternatively, you can specify N O L O G F I L E = Y . However, this prevents the writing of the log file. Example The following is an example of using the L O G F I L Eparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rS C H E M A S = H RD I R E C T O R Y = d p u m p _ d i r 2L O G F I L E = i m p . l o g D U M P F I L E = d p u m p _ d i r 1 : e x p f u l l . d m p

Because no directory object is specified on the L O G F I L Eparameter, the log file is written to the directory object specified on the D I R E C T O R Yparameter. See Also: "STATUS" "Using Directory Objects When Oracle Automatic Storage Management Is Enabled" for information about Oracle Automatic Storage Management and directory objects

NETWORK_LINK
Default: There is no default Purpose Enables an import from a (source) database identified by a valid database link. The data from the source database instance is written directly back to the connected database instance. Syntax and Description
N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k

The N E T W O R K _ L I N Kparameter initiates an import via a database link. This means that the system to which the i m p d pclient is connected contacts the source database referenced by the s o u r c e _ d a t a b a s e _ l i n k , retrieves data from it, and writes the data to the database on the connected instance. There are no dump files involved. The s o u r c e _ d a t a b a s e _ l i n kprovided must be the name of a database link to an available database. If the database on that instance does not already have a database link, you or your DBA must create one. For more information about the C R E A T ED A T A B A S EL I N Kstatement, see Oracle Database SQL Language Reference. When you perform a network import using the transportable method, you must copy the source data files to the target database before you start the import. If the source database is read-only, then the connected user must have a locally managed tablespace assigned as the default temporary tablespace on the source database. Otherwise, the job will fail. For further details about this, see the information about creating locally managed temporary tablespaces in the Oracle Database Administrator's Guide. This parameter is required when any of the following parameters are specified: F L A S H B A C K _ S C N ,F L A S H B A C K _ T I M E , E S T I M A T E ,T R A N S P O R T _ T A B L E S P A C E S , or T R A N S P O R T A B L E . Caution: If an import operation is performed over an unencrypted network link, then all data is imported as clear text even if it is encrypted in the database. See Oracle Database Advanced Security Administrator's Guide for more information about network security. Restrictions The Import N E T W O R K _ L I N Kparameter is not supported for tables containing SecureFiles that have ContentType set or that are currently stored outside of the SecureFile segment through Oracle Database File System Links. Network imports do not support the use of evolved types. Network imports do not support L O N Gcolumns. When the N E T W O R K _ L I N Kparameter is used with the T A B L E Sparameter, only whole tables can be imported (not partitions of tables). The only exception to this is if T R A N S P O R T A B L E = A L W A Y Sis also specified, in which case single or multiple partitions of a specified table can be imported. If the U S E R I Dthat is executing the import job has the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole on the target database,
oracle.su/docs/11g/server.112/e10701/dp_import.htm 14/38

8/9/13

Data Pump Import

then that user must also have the D A T A P U M P _ E X P _ F U L L _ D A T A B A S Erole on the source database. The only types of database links supported by Data Pump Import are: public, fixed-user, and connected-user. Current-user database links are not supported. Example In the following example, the s o u r c e _ d a t a b a s e _ l i n kwould be replaced with the name of a valid database link.
>i m p d ph rT A B L E S = e m p l o y e e sD I R E C T O R Y = d p u m p _ d i r 1 N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n kE X C L U D E = C O N S T R A I N T

This example results in an import of the e m p l o y e e stable (excluding constraints) from the source database. The log file is written to d p u m p _ d i r 1 , specified on the D I R E C T O R Yparameter.

NOLOGFILE
Default: n Purpose Specifies whether to suppress the default behavior of creating a log file. Syntax and Description
N O L O G F I L E = { y|n }

If you specify N O L O G F I L E = yto suppress creation of a log file, progress and error information is still written to the standard output device of any attached clients, including the client that started the original export operation. If there are no clients attached to a running job and you specify N O L O G F I L E = y , you run the risk of losing important progress and error information. Example The following is an example of using the N O L O G F I L Eparameter.
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pN O L O G F I L E = y

This command results in a full mode import (the default for file-based imports) of the e x p f u l l . d m pdump file. No log file is written because N O L O G F I L Eis set to y .

PARALLEL
Default: 1 Purpose Specifies the maximum number of threads of active execution operating on behalf of the import job. Syntax and Description
P A R A L L E L = i n t e g e r

The value you specify for i n t e g e rspecifies the maximum number of threads of active execution operating on behalf of the import job. This execution set consists of a combination of worker processes and parallel I/O server processes. The master control process, idle workers, and worker processes acting as parallel execution coordinators in parallel I/O operations do not count toward this total. This parameter enables you to make trade-offs between resource consumption and elapsed time. If the source of the import is a dump file set consisting of files, multiple processes can read from the same file, but performance may be limited by I/O contention. To increase or decrease the value of P A R A L L E Lduring job execution, use interactive-command mode. Parallelism is used for loading user data and package bodies, and for building indexes. See Also: "Controlling Resource Consumption" Using PARALLEL During An Import In An Oracle RAC Environment In an Oracle Real Application Clusters (RAC) environment, if an import operation has P A R A L L E L = 1 , then all Data Pump processes reside on the instance where the job is started. Therefore, the directory object can point to local storage for that instance. If the import operation has P A R A L L E Lset to a value greater than 1, then Data Pump processes can reside on instances other than the one where the job was started. Therefore, the directory object must point to shared storage that is accessible by all instances of the Oracle RAC. Restrictions This parameter is valid only in the Enterprise Edition of Oracle Database 11g. Example
oracle.su/docs/11g/server.112/e10701/dp_import.htm 15/38

8/9/13

Data Pump Import

The following is an example of using the P A R A L L E Lparameter.


>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1L O G F I L E = p a r a l l e l _ i m p o r t . l o g J O B _ N A M E = i m p _ p a r 3D U M P F I L E = p a r _ e x p % U . d m pP A R A L L E L = 3

This command imports the dump file set that is created when you run the example for the Export P A R A L L E Lparameter. (See "PARALLEL".) The names of the dump files are p a r _ e x p 0 1 . d m p ,p a r _ e x p 0 2 . d m p , and p a r _ e x p 0 3 . d m p .

PARFILE
Default: There is no default Purpose Specifies the name of an import parameter file. Syntax and Description
P A R F I L E = [ d i r e c t o r y _ p a t h ] f i l e _ n a m e

Unlike dump files, log files, and SQL files which are created and written by the server, the parameter file is opened and read by the i m p d pclient. Therefore, a directory object name is neither required nor appropriate. The default is the user's current directory. The use of parameter files is highly recommended if you are using parameters whose values require the use of quotation marks. See Also: "Use of Quotation Marks On the Data Pump Command Line" Restrictions The P A R F I L Eparameter cannot be specified within a parameter file. Example The content of an example parameter file, h r _ i m p . p a r , might be as follows:
T A B L E S =c o u n t r i e s ,l o c a t i o n s ,r e g i o n s D U M P F I L E = d p u m p _ d i r 2 : e x p 1 . d m p , e x p 2 % U . d m p D I R E C T O R Y = d p u m p _ d i r 1 P A R A L L E L = 3

You could then issue the following command to execute the parameter file:
>i m p d ph rP A R F I L E = h r _ i m p . p a r

The tables named c o u n t r i e s ,l o c a t i o n s , and r e g i o n swill be imported from the dump file set that is created when you run the example for the Export D U M P F I L Eparameter. (See "DUMPFILE".) The import job looks for the e x p 1 . d m pfile in the location pointed to by d p u m p _ d i r 2 . It looks for any dump files of the form e x p 2 n n . d m pin the location pointed to by d p u m p _ d i r 1 . The log file for the job will also be written to d p u m p _ d i r 1 .

PARTITION_OPTIONS
Default: The default is d e p a r t i t i o nwhen partition names are specified on the T A B L E Sparameter and T R A N P O R T A B L E = A L W A Y Sis set (whether on the import operation or during the export). Otherwise, the default is n o n e . Purpose Specifies how table partitions should be created during an import operation. Syntax and Description
P A R T I T I O N _ O P T I O N S = { n o n e|d e p a r t i t i o n|m e r g e }

A value of n o n ecreates tables as they existed on the system from which the export operation was performed. You cannot use the n o n eoption or the m e r g eoption if the export was performed with the transportable method, along with a partition or subpartition filter. In such a case, you must use the departition option. A value of d e p a r t i t i o npromotes each partition or subpartition to a new individual table. The default name of the new table will be the concatenation of the table and partition name or the table and subpartition name, as appropriate. A value of m e r g ecombines all partitions and subpartitions into one table. Restrictions If the export operation that created the dump file was performed with the transportable method and if a partition or subpartition was specified, then the import operation must use the d e p a r t i t i o noption. If the export operation that created the dump file was performed with the transportable method, then the import operation cannot use P A R T I T I O N _ O P T I O N S = m e r g e . If there are any grants on objects being departitioned, an error message is generated and the objects are not loaded. Example The following example assumes that the s h . s a l e stable has been exported into a dump file named s a l e s . d m p . It uses the
oracle.su/docs/11g/server.112/e10701/dp_import.htm 16/38

8/9/13
m e r g eoption to

Data Pump Import

merge all the partitions in s h . s a l e sinto one non-partitioned table in s c o t tschema.

>i m p d ps y s t e mT A B L E S = s h . s a l e sP A R T I T I O N _ O P T I O N S = m e r g e D I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = s a l e s . d m pR E M A P _ S C H E M A = s h : s c o t t

See Also: "TRANSPORTABLE" for an example of performing an import operation using P A R T I T I O N _ O P T I O N S = d e p a r t i t i o n

QUERY
Default: There is no default Purpose Allows you to specify a query clause that filters the data that gets imported. Syntax and Description
Q U E R Y = [ [ s c h e m a _ n a m e . ] t a b l e _ n a m e : ] q u e r y _ c l a u s e

The q u e r y _ c l a u s eis typically a SQL W H E R Eclause for fine-grained row selection, but could be any SQL clause. For example, an O R D E RB Yclause could be used to speed up a migration from a heap-organized table to an index-organized table. If a schema and table name are not supplied, the query is applied to (and must be valid for) all tables in the source dump file set or database. A table-specific query overrides a query applied to all tables. When the query is to be applied to a specific table, a colon (:) must separate the table name from the query clause. More than one table-specific query can be specified, but only one query can be specified per table. The query must be enclosed in single or double quotation marks. Double quotation marks are recommended, because strings within the clause must be enclosed in single quotation marks. Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. See "Use of Quotation Marks On the Data Pump Command Line". When the Q U E R Yparameter is used, the external tables method (rather than the direct path method) is used for data access. To specify a schema other than your own in a table-specific query, you must be granted access to that specific table. Restrictions The Q U E R Yparameter cannot be used with the following parameters:
C O N T E N T = M E T A D A T A _ O N L Y S Q L F I L E T R A N S P O R T _ D A T A F I L E S

When the Q U E R Yparameter is specified for a table, Data Pump uses external tables to load the target table. External tables uses a SQL I N S E R Tstatement with a S E L E C Tclause. The value of the Q U E R Yparameter is included in the W H E R Eclause of the S E L E C Tportion of the I N S E R Tstatement. If the Q U E R Yparameter includes references to another table with columns whose names match the table being loaded, and if those columns are used in the query, then you will need to use a table alias to distinguish between columns in the table being loaded and columns in the S E L E C T statement with the same name. The table alias used by Data Pump for the table being loaded is K U $ . For example, suppose you are importing a subset of the s h . s a l e stable based on the credit limit for a customer in the s h . c u s t o m e r stable. In the following example, K U $is used to qualify the c u s t _ i dfield in the Q U E R Yparameter for loading s h . s a l e s . As a result, Data Pump imports only rows for customers whose credit limit is greater than $10,000.
Q U E R Y = ' s a l e s : " W H E R EE X I S T S( S E L E C Tc u s t _ i dF R O Mc u s t o m e r sc W H E R Ec u s t _ c r e d i t _ l i m i t>1 0 0 0 0A N Dk u $ . c u s t _ i d=c . c u s t _ i d ) " '

If K U $is not used for a table alias, the result will be that all rows are loaded:
Q U E R Y = ' s a l e s : " W H E R EE X I S T S( S E L E C Tc u s t _ i dF R O Mc u s t o m e r sc W H E R Ec u s t _ c r e d i t _ l i m i t>1 0 0 0 0A N Dc u s t _ i d=c . c u s t _ i d ) " '

The maximum length allowed for a Q U E R Ystring is 4000 bytes including quotation marks, which means that the actual maximum length allowed is 3998 bytes. Example The following is an example of using the Q U E R Yparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL". Because the Q U E R Yvalue uses quotation marks, Oracle recommends that you use a parameter file. Suppose you have a parameter file, q u e r y _ i m p . p a r , that contains the following:
Q U E R Y = d e p a r t m e n t s : " W H E R Ed e p a r t m e n t _ i d<1 2 0 "

You can then enter the following command:


oracle.su/docs/11g/server.112/e10701/dp_import.htm 17/38

8/9/13

Data Pump Import


>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p P A R F I L E = q u e r y _ i m p . p a rN O L O G F I L E = Y

All tables in e x p f u l l . d m pare imported, but for the d e p a r t m e n t stable, only data that meets the criteria specified in the Q U E R Yparameter is imported.

REMAP_DATA
Default: There is no default Purpose The R E M A P _ D A T Aparameter allows you to remap data as it is being inserted into a new database. A common use is to regenerate primary keys to avoid conflict when importing a table into a pre-existing table on the target database. You can specify a remap function that takes as a source the value of the designated column from either the dump file or a remote database. The remap function then returns a remapped value that will replace the original value in the target database. The same function can be applied to multiple columns being dumped. This is useful when you want to guarantee consistency in remapping both the child and parent column in a referential constraint. Syntax and Description
R E M A P _ D A T A = [ s c h e m a . ] t a b l e n a m e . c o l u m n _ n a m e : [ s c h e m a . ] p k g . f u n c t i o n

The description of each syntax element, in the order in which they appear in the syntax, is as follows: schema -- the schema containing the table to be remapped. By default, this is the schema of the user doing the import. tablename -- the table whose column will be remapped. column_name -- the column whose data is to be remapped. schema -- the schema containing the PL/SQL package you created that contains the remapping function. As a default, this is the schema of the user doing the import. pkg -- the name of the PL/SQL package you created that contains the remapping function. function -- the name of the function within the PL/SQL that will be called to remap the column table in each row of the specified table. Restrictions The datatypes of the source argument and the returned value should both match the datatype of the designated column in the table. Remapping functions should not perform commits or rollbacks except in autonomous transactions. Example The following example assumes a package named r e m a phas been created that contains a function named p l u s xthat changes the values for f i r s t _ n a m ein the e m p l o y e e stable.
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p s c h e m a . d m p T A B L E S = h r . e m p l o y e e sR E M A P _ D A T A = h r . e m p l o y e e s . f i r s t _ n a m e : h r . r e m a p . p l u s x

REMAP_DATAFILE
Default: There is no default Purpose Changes the name of the source datafile to the target datafile name in all SQL statements where the source datafile is referenced: C R E A T ET A B L E S P A C E ,C R E A T EL I B R A R Y , and C R E A T ED I R E C T O R Y . Syntax and Description
R E M A P _ D A T A F I L E = s o u r c e _ d a t a f i l e : t a r g e t _ d a t a f i l e

Remapping datafiles is useful when you move databases between platforms that have different file naming conventions. The s o u r c e _ d a t a f i l eand t a r g e t _ d a t a f i l enames should be exactly as you want them to appear in the SQL statements where they are referenced. Oracle recommends that you enclose datafile names in quotation marks to eliminate ambiguity on platforms for which a colon is a valid file specification character. Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. You must have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole to specify this parameter. See Also: "Use of Quotation Marks On the Data Pump Command Line"
oracle.su/docs/11g/server.112/e10701/dp_import.htm 18/38

8/9/13

Data Pump Import

Example Suppose you had a parameter file, p a y r o l l . p a r , with the following content:
D I R E C T O R Y = d p u m p _ d i r 1 F U L L = Y D U M P F I L E = d b _ f u l l . d m p R E M A P _ D A T A F I L E = " ' D B 1 $ : [ H R D A T A . P A Y R O L L ] t b s 6 . d b f ' : ' / d b 1 / h r d a t a / p a y r o l l / t b s 6 . d b f ' "

You can then issue the following command:


>i m p d ph rP A R F I L E = p a y r o l l . p a r

This example remaps a VMS file specification (D R 1 $ : [ H R D A T A . P A Y R O L L ] t b s 6 . d b f ) to a UNIX file specification, (/ d b 1 / h r d a t a / p a y r o l l / t b s 6 . d b f ) for all SQL DDL statements during the import. The dump file, d b _ f u l l . d m p ,is located by the directory object, d p u m p _ d i r 1 .

REMAP_SCHEMA
Default: There is no default Purpose Loads all objects from the source schema into a target schema. Syntax and Description
R E M A P _ S C H E M A = s o u r c e _ s c h e m a : t a r g e t _ s c h e m a

Multiple R E M A P _ S C H E M Alines can be specified, but the source schema must be different for each one. However, different source schemas can map to the same target schema. The mapping may not be 100 percent complete, because there are certain schema references that Import is not capable of finding. For example, Import will not find schema references embedded within the body of definitions of types, views, procedures, and packages. If the schema you are remapping to does not already exist, then the import operation creates it, provided that the dump file set contains the necessary C R E A T EU S E Rmetadata for the source schema, and provided that you are importing with enough privileges. For example, the following Export commands create dump file sets with the necessary metadata to create a schema, because the user S Y S T E Mhas the necessary privileges:
>e x p d ps y s t e mS C H E M A S = h r P a s s w o r d :p a s s w o r d >e x p d ps y s t e mF U L L = y P a s s w o r d :p a s s w o r d

If your dump file set does not contain the metadata necessary to create a schema, or if you do not have privileges, then the target schema must be created before the import operation is performed. This is because the unprivileged dump files do not contain the necessary information for the import to create the schema automatically. If the import operation does create the schema, then after the import is complete, you must assign it a valid password to connect to it. The SQL statement to do this, which requires privileges, is:
S Q L >A L T E RU S E Rs c h e m a _ n a m eI D E N T I F I E DB Yn e w _ p a s s w o r d

Restrictions Unprivileged users can perform schema remaps only if their schema is the target schema of the remap. (Privileged users can perform unrestricted schema remaps.) For example, S C O T Tcan remap his B L A K E 's objects to S C O T T , but S C O T Tcannot remap S C O T T 's objects to B L A K E . Example Suppose that, as user S Y S T E M , you execute the following Export and Import commands to remap the h rschema into the s c o t tschema:
>e x p d ps y s t e mS C H E M A S = h rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r . d m p >i m p d ps y s t e mD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r . d m pR E M A P _ S C H E M A = h r : s c o t t

In this example, if user s c o t talready exists before the import, then the Import R E M A P _ S C H E M Acommand will add objects from the h rschema into the existing s c o t tschema. You can connect to the s c o t tschema after the import by using the existing password (without resetting it). If user s c o t tdoes not exist before you execute the import operation, Import automatically creates it with an unusable password. This is possible because the dump file, h r .d m p , was created by S Y S T E M ,which has the privileges necessary to create a dump file that contains the metadata needed to create a schema. However, you cannot connect to s c o t ton completion of the import, unless you reset the password for s c o t ton the target database after the import completes.

REMAP_TABLE
Default: There is no default Purpose Allows you to rename tables during an import operation.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 19/38

8/9/13

Data Pump Import

Syntax and Description You can use either of the following syntaxes (see the Usage Notes below):
R E M A P _ T A B L E = [ s c h e m a . ] o l d _ t a b l e n a m e [ . p a r t i t i o n ] : n e w _ t a b l e n a m e

OR
R E M A P _ T A B L E = [ s c h e m a . ] o l d _ t a b l e n a m e [ : p a r t i t i o n ] : n e w _ t a b l e n a m e

You can use the R E M A P _ T A B L Eparameter to rename entire tables or to rename table partitions if the table is being departitioned. (See "PARTITION_OPTIONS".) You can also use it to override the automatic naming of table partitions that were exported. Usage Notes Be aware that with the first syntax, if you specify R E M A P _ T A B L E = A . B : C , Import assumes that Ais a schema name, Bis the old table name, and Cis the new table name. To use the first syntax to rename a partition that is being promoted to a nonpartitioned table, you must specify a schema name. To use the second syntax to rename a partition being promoted to a nonpartitioned table, you only need to qualify it with the old table name. No schema name is required. Restrictions Only objects created by the Import will be remapped. In particular, preexisting tables will not be remapped. The R E M A P _ T A B L Eparameter will not work if the table being remapped has named constraints in the same schema and the constraints need to be created when the table is created. Example The following is an example of using the R E M A P _ T A B L Eparameter to rename the e m p l o y e e stable to a new name of e m p s :
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p s c h e m a . d m p T A B L E S = h r . e m p l o y e e sR E M A P _ T A B L E = h r . e m p l o y e e s : e m p s

REMAP_TABLESPACE
Default: There is no default Purpose Remaps all objects selected for import with persistent data in the source tablespace to be created in the target tablespace. Syntax and Description
R E M A P _ T A B L E S P A C E = s o u r c e _ t a b l e s p a c e : t a r g e t _ t a b l e s p a c e

Multiple R E M A P _ T A B L E S P A C Eparameters can be specified, but no two can have the same source tablespace. The target schema must have sufficient quota in the target tablespace. Note that use of the R E M A P _ T A B L E S P A C Eparameter is the only way to remap a tablespace in Data Pump Import. This is a simpler and cleaner method than the one provided in the original Import utility. That method was subject to many restrictions (including the number of tablespace subclauses) which sometimes resulted in the failure of some DDL commands. By contrast, the Data Pump Import method of using the R E M A P _ T A B L E S P A C Eparameter works for all objects, including the user, and it works regardless of how many tablespace subclauses are in the DDL statement. Restrictions Data Pump Import can only remap tablespaces for transportable imports in databases where the compatibility level is set to 10.1 or later. Only objects created by the Import will be remapped. In particular, the tablespaces for preexisting tables will not be remapped if T A B L E _ E X I S T S _ A C T I O Nis set to S K I P ,T R U N C A T E , or A P P E N D . Example The following is an example of using the R E M A P _ T A B L E S P A C Eparameter.
>i m p d ph rR E M A P _ T A B L E S P A C E = t b s _ 1 : t b s _ 6D I R E C T O R Y = d p u m p _ d i r 1 D U M P F I L E = e m p l o y e e s . d m p

REUSE_DATAFILES
Default: n Purpose Specifies whether the import job should reuse existing datafiles for tablespace creation. Syntax and Description
oracle.su/docs/11g/server.112/e10701/dp_import.htm 20/38

8/9/13

Data Pump Import


R E U S E _ D A T A F I L E S = { y|n }

If the default (n ) is used and the datafiles specified in C R E A T ET A B L E S P A C Estatements already exist, an error message from the failing C R E A T ET A B L E S P A C Estatement is issued, but the import job continues. If this parameter is specified as y , the existing datafiles are reinitialized. Caution: Specifying R E U S E _ D A T A F I L E S = ymay result in a loss of data. Example The following is an example of using the R E U S E _ D A T A F I L E Sparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pL O G F I L E = r e u s e . l o g R E U S E _ D A T A F I L E S = Y

This example reinitializes datafiles referenced by C R E A T ET A B L E S P A C Estatements in the e x p f u l l . d m pfile.

SCHEMAS
Default: There is no default Purpose Specifies that a schema-mode import is to be performed. Syntax and Description
S C H E M A S = s c h e m a _ n a m e[ , . . . ]

If you have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole, you can use this parameter to perform a schema-mode import by specifying a list of schemas to import. First, the user definitions are imported (if they do not already exist), including system and role grants, password history, and so on. Then all objects contained within the schemas are imported. Nonprivileged users can specify only their own schemas or schemas remapped to their own schemas. In that case, no information about the schema definition is imported, only the objects contained within it. The use of filtering can restrict what is imported using this import mode. See "Filtering During Import Operations". Schema mode is the default mode when you are performing a network-based import. Example The following is an example of using the S C H E M A Sparameter. You can create the e x p d a t . d m pfile used in this example by running the example provided for the Export S C H E M A Sparameter. See "SCHEMAS".
>i m p d ph rS C H E M A S = h rD I R E C T O R Y = d p u m p _ d i r 1L O G F I L E = s c h e m a s . l o g D U M P F I L E = e x p d a t . d m p

The h rschema is imported from the e x p d a t . d m pfile. The log file, s c h e m a s . l o g , is written to d p u m p _ d i r 1 .

SERVICE_NAME
Default: There is no default Purpose Used to specify a service name to be used in conjunction with the C L U S T E Rparameter. Syntax and Description
S E R V I C E _ N A M E = n a m e

The S E R V I C E _ N A M Eparameter can be used with the C L U S T E R = Yparameter to specify an existing service associated with a resource group that defines a set of Oracle Real Application Clusters (RAC) instances belonging to that resource group, typically a subset of all the Oracle RAC instances. The service name is only used to determine the resource group and instances defined for that resource group. The instance where the job is started is always used, regardless of whether it is part of the resource group. The S E R V I C E _ N A M Eparameter is ignored if C L U S T E R = Nis also specified. Suppose you have an Oracle RAC configuration containing instances A, B, C, and D. Also suppose that a service named m y _ s e r v i c eexists with a resource group consisting of instances A, B, and C only. In such a scenario, the following would be true: If you start a Data Pump job on instance A and specify C L U S T E R = Y(or accept the default, which is y e s ) and you do not specify the S E R V I C E _ N A M Eparameter, Data Pump creates workers on all instances: A, B, C, and D, depending on the degree of parallelism specified. If you start a Data Pump job on instance A and specify C L U S T E R = Yand S E R V I C E _ N A M E = m y _ s e r v i c e , then workers can be started on instances A, B, and C only.

oracle.su/docs/11g/server.112/e10701/dp_import.htm

21/38

8/9/13

Data Pump Import

If you start a Data Pump job on instance A and specify C L U S T E R = N , then any S E R V I C E _ N A M Eparameter you specify is ignored and all processes will start on instance A. See Also: "CLUSTER" Example
>i m p d ps y s t e mD I R E C T O R Y = d p u m p _ d i r 1S C H E M A S = h r S E R V I C E _ N A M E = S A L E SN E T W O R K _ L I N K = d b s 1

This example starts a schema-mode network import of the hr schema. Even though C L U S T E R = Yis not specified on the command line, it is the default behavior, so the job will use all instances in the resource group associated with the service name S A L E S . The N E T W O R K _ L I N Kvalue of d b s 1would be replaced with the name of the source database from which you were importing data. (Note that there is no dump file generated because this is a network import.) The N E T W O R K _ L I N Kparameter is simply being used as part of the example. It is not required when using the S E R V I C E _ N A M Eparameter.

SKIP_UNUSABLE_INDEXES
Default: the value of the Oracle Database configuration parameter, S K I P _ U N U S A B L E _ I N D E X E S . Purpose Specifies whether Import skips loading tables that have indexes that were set to the Index Unusable state (by either the system or the user). Syntax and Description
S K I P _ U N U S A B L E _ I N D E X E S = { y|n }

If S K I P _ U N U S A B L E _ I N D E X E Sis set to y , and a table or partition with an index in the Unusable state is encountered, the load of that table or partition proceeds anyway, as if the unusable index did not exist. If S K I P _ U N U S A B L E _ I N D E X E Sis set to n , and a table or partition with an index in the Unusable state is encountered, that table or partition is not loaded. Other tables, with indexes not previously set Unusable, continue to be updated as rows are inserted. If the S K I P _ U N U S A B L E _ I N D E X E Sparameter is not specified, then the setting of the Oracle Database configuration parameter, S K I P _ U N U S A B L E _ I N D E X E S(whose default value is y ), will be used to determine how to handle unusable indexes. If indexes used to enforce constraints are marked unusable, then the data is not imported into that table. Note: This parameter is useful only when importing data into an existing table. It has no practical effect when a table is created as part of an import because in that case, the table and indexes are newly created and will not be marked unusable. Example The following is an example of using the S K I P _ U N U S A B L E _ I N D E X E Sparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pL O G F I L E = s k i p . l o g S K I P _ U N U S A B L E _ I N D E X E S = y

SOURCE_EDITION
Default: the default database edition on the remote node from which objects will be fetched Purpose Specifies the database edition on the remote node from which objects will be fetched. Syntax and Description
S O U R C E _ E D I T I O N = e d i t i o n _ n a m e

If S O U R C E _ E D I T I O N = n a m eis specified, the objects from that edition are imported. Data Pump selects all inherited objects that have not changed and all actual objects that have changed. If this parameter is not specified, then the default edition is used. If the specified edition does not exist or is not usable, an error message is returned. See Also: Oracle Database SQL Language Reference for information about how editions are created Oracle Database Advanced Application Developer's Guide for more information about the editions feature, including inherited and actual objects Restrictions
oracle.su/docs/11g/server.112/e10701/dp_import.htm 22/38

8/9/13

Data Pump Import

The S O U R C E _ E D I T I O Nparameter is valid on an import operation only when the N E T W O R K _ L I N Kparameter is also specified. See "NETWORK_LINK". This parameter is only useful if there are two or more versions of the same versionable objects in the database. The job version must be set to 11.2 or higher. See "VERSION". Example The following is an example of using the import S O U R C E _ E D I T I O Nparameter:
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1S O U R C E _ E D I T I O N = e x p _ e d i t i o n N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n kE X C L U D E = u s e r

This example assumes the existence of an edition named e x p _ e d i t i o non the system from which objects are being imported. Because no import mode is specified, the default of schema mode will be used. The s o u r c e _ d a t a b a s e _ l i n k would be replaced with the name of the source database from which you were importing data. The E X C L U D E = u s e r parameter excludes only the definitions of users, not the objects contained within users' schemas. (Note that there is no dump file generated because this is a network import.)

SQLFILE
Default: There is no default Purpose Specifies a file into which all of the SQL DDL that Import would have executed, based on other parameters, is written. Syntax and Description
S Q L F I L E = [ d i r e c t o r y _ o b j e c t : ] f i l e _ n a m e

The f i l e _ n a m especifies where the import job will write the DDL that would be executed during the job. The SQL is not actually executed, and the target system remains unchanged. The file is written to the directory object specified in the D I R E C T O R Yparameter, unless another d i r e c t o r y _ o b j e c tis explicitly specified here. Any existing file that has a name matching the one specified with this parameter is overwritten. Note that passwords are not included in the SQL file. For example, if a C O N N E C Tstatement is part of the DDL that was executed, it will be replaced by a comment with only the schema name shown. In the following example, the dashes (--) indicate that a comment follows, and the h rschema name is shown, but not the password.
-C O N N E C Th r

Therefore, before you can execute the SQL file, you must edit it by removing the dashes indicating a comment and adding the password for the h rschema. For Streams and other Oracle database options, anonymous PL/SQL blocks may appear within the S Q L F I L Eoutput. They should not be executed directly. Restrictions If S Q L F I L Eis specified, then the C O N T E N Tparameter is ignored if it is set to either A L Lor D A T A _ O N L Y . To perform a Data Pump Import to a SQL file using Oracle Automatic Storage Management (Oracle ASM), the S Q L F I L Eparameter that you specify must include a directory object that does not use the Oracle ASM + notation. That is, the SQL file must be written to a disk file, not into the Oracle ASM storage. The S Q L F I L Eparameter cannot be used in conjunction with the Q U E R Yparameter. Example The following is an example of using the S Q L F I L Eparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p S Q L F I L E = d p u m p _ d i r 2 : e x p f u l l . s q l

A SQL file named e x p f u l l . s q lis written to d p u m p _ d i r 2 .

STATUS
Default: 0 Purpose Specifies the frequency at which the job status will be displayed. Syntax and Description
S T A T U S [ = i n t e g e r ]

If you supply a value for i n t e g e r , it specifies how frequently, in seconds, job status should be displayed in logging mode. If no value is entered or if the default value of 0 is used, no additional information is displayed beyond information about the completion of each object type, table, or partition.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 23/38

8/9/13

Data Pump Import

This status information is written only to your standard output device, not to the log file (if one is in effect). Example The following is an example of using the S T A T U Sparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rN O L O G F I L E = yS T A T U S = 1 2 0D I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p

In this example, the status is shown every two minutes (120 seconds).

STREAMS_CONFIGURATION
Default: y Purpose Specifies whether to import any Streams metadata that may be present in the export dump file. Syntax and Description
S T R E A M S _ C O N F I G U R A T I O N = { y|n }

Example The following is an example of using the S T R E A M S _ C O N F I G U R A T I O Nparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pS T R E A M S _ C O N F I G U R A T I O N = n

See Also: Oracle Streams Replication Administrator's Guide

TABLE_EXISTS_ACTION
Search

This book

Entire library

Default: S K I P(Note that if C O N T E N T = D A T A _ O N L Yis specified, the default is A P P E N D , not S K I P .) Purpose Tells Import what to do if the table it is trying to create already exists. Syntax and Description
T A B L E _ E X I S T S _ A C T I O N = { S K I P|A P P E N D|T R U N C A T E|R E P L A C E }

Quick Lookup
Advanced Search Master Book List Master Index Master Glossary Error Messages

Main Categories
Installation Getting Started Administration Application Development Grid Computing High Availability Data Warehousing Content Management and Unstructured Data Information Integration Security

The possible values have the following effects:


S K I Pleaves the table as is and

moves on to the next object. This is not a valid option if the C O N T E N Tparameter is leaves existing rows unchanged.

set to D A T A _ O N L Y .
A P P E N Dloads rows from the source and T R U N C A T Edeletes existing rows and

then loads rows from the source. then creates and loads it from the source. This is not a valid option if the

This Book
Oracle Database Utilities 11g Release 2 (11.2)

R E P L A C Edrops the existing table and

C O N T E N Tparameter is set to D A T A _ O N L Y .

This Page
3 Data Pump Import What Is Data Pump Import? Invoking Data Pump Import Filtering During Import Operations Parameters Available in Import's CommandLine Mode Commands Available in Import's InteractiveCommand Mode Examples of Using Data Pump Import Syntax Diagrams for Data Pump Import

The following considerations apply when you are using these options: When you use T R U N C A T Eor R E P L A C E , ensure that rows in the affected tables are not targets of any referential constraints. When you use S K I P ,A P P E N D , or T R U N C A T E , existing table-dependent objects in the source, such as indexes, grants, triggers, and constraints, are not modified. For R E P L A C E , the dependent objects are dropped and re-created from the source, if they were not explicitly or implicitly excluded (using E X C L U D E ) and they exist in the source dump file or system. When you use A P P E N Dor T R U N C A T E , checks are made to ensure that rows from the source are compatible with the existing table before performing any action. If the existing table has active constraints and triggers, it is loaded using the external tables access method. If any row violates an active constraint, the load fails and no data is loaded. You can override this behavior by specifying D A T A _ O P T I O N S = S K I P _ C O N S T R A I N T _ E R R O R Son the Import command line. If you have data that must be loaded, but may cause constraint violations, consider disabling the constraints, loading the data, and then deleting the problem rows before reenabling the constraints. When you use A P P E N D , the data is always loaded into new space; existing space, even if available, is not reused. For this reason, you may want to compress your data after the load. Note: When Data Pump detects that the source table and target table do not match (the two tables do not have the same number of columns or the target table has a column name that is not present in the source table), it compares column names

oracle.su/docs/11g/server.112/e10701/dp_import.htm

24/38

8/9/13

Data Pump Import

between the two tables. If the tables have at least one column in common, then the data for the common columns is imported into the table (assuming the datatypes are compatible). The following restrictions apply: This behavior is not supported for network imports. The following types of columns cannot be dropped: column objects, object attributes, nested table columns, and ref columns based on a primary key. Restrictions
T R U N C A T Ecannot be used

on clustered tables.

Example The following is an example of using the T A B L E _ E X I S T S _ A C T I O Nparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rT A B L E S = e m p l o y e e sD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m p T A B L E _ E X I S T S _ A C T I O N = R E P L A C E

TABLES
Default: There is no default Purpose Specifies that you want to perform a table-mode import. Syntax and Description
T A B L E S = [ s c h e m a _ n a m e . ] t a b l e _ n a m e [ : p a r t i t i o n _ n a m e ]

In a table-mode import, you can filter the data that is imported from the source by specifying a comma-delimited list of tables and partitions or subpartitions. If you do not supply a s c h e m a _ n a m e , it defaults to that of the current user. To specify a schema other than your own, you must either have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole or remap the schema to the current user. The use of filtering can restrict what is imported using this import mode. See "Filtering During Import Operations". If a p a r t i t i o n _ n a m eis specified, it must be the name of a partition or subpartition in the associated table. The use of wildcards to specify table names and partition names is supported. The following restrictions apply to table names: By default, table names in a database are stored as uppercase. If you have a table name in mixed-case or lowercase, and you want to preserve case-sensitivity for the table name, you must enclose the name in quotation marks. The name must exactly match the table name stored in the database. Some operating systems require that quotation marks on the command line be preceded by an escape character. The following are examples of how case-sensitivity can be preserved in the different Import modes. In command-line mode:
T A B L E S = ' \ " E m p \ " '

In interactive mode:
T a b l e ( T )t ob ee x p o r t e d :" E x p "

In parameter file mode:


T A B L E S = ' " E m p " '

Table names specified on the command line cannot include a pound sign (#), unless the table name is enclosed in quotation marks. Similarly, in the parameter file, if a table name includes a pound sign (#), the Import utility interprets the rest of the line as a comment, unless the table name is enclosed in quotation marks. For example, if the parameter file contains the following line, Import interprets everything on the line after e m p #as a comment and does not import the tables d e p tand m y d a t a :
T A B L E S = ( e m p # ,d e p t ,m y d a t a )

However, if the parameter file contains the following line, the Import utility imports all three tables because e m p #is enclosed in quotation marks:
T A B L E S = ( ' " e m p # " ' ,d e p t ,m y d a t a )

Note: Some operating systems require single quotation marks rather than double quotation marks, or the reverse; see your Oracle operating system-specific documentation. Different operating systems also have other restrictions on table naming. For example, the UNIX C shell attaches a special meaning to a dollar sign ($) or pound sign (#) (or certain other
oracle.su/docs/11g/server.112/e10701/dp_import.htm 25/38

8/9/13

Data Pump Import

special characters). You must use escape characters to get such characters in the name past the shell and into Import. Restrictions The use of synonyms as values for the T A B L E Sparameter is not supported. For example, if the r e g i o n stable in the h rschema had a synonym of r e g n , it would not be valid to use T A B L E S = r e g n . An error would be returned. You can only specify partitions from one table if P A R T I T I O N _ O P T I O N S = D E P A R T I T I O Nis also specified on the import. When the N E T W O R K _ L I N Kparameter is used with the T A B L E Sparameter, only whole tables can be imported (not partitions of tables). The only exception to this is if T R A N S P O R T A B L E = A L W A Y Sis also specified, in which case single or multiple partitions of a specified table can be imported. If you specify T R A N S P O R T A B L E = A L W A Y S , then all partitions specified on the T A B L E Sparameter must be in the same table. The length of the table name list specified for the T A B L E Sparameter is limited to a maximum of 4 MB, unless you are using the N E T W O R K _ L I N Kparameter to an Oracle Database release 10.2.0.3 or earlier or to a read-only database. In such cases, the limit is 4 KB. Example The following example shows a simple use of the T A B L E Sparameter to import only the e m p l o y e e sand j o b stables from the e x p f u l l . d m pfile. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pT A B L E S = e m p l o y e e s , j o b s

The following example shows the use of the T A B L E Sparameter to import partitions:
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p d a t . d m p T A B L E S = s h . s a l e s : s a l e s _ Q 1 _ 2 0 0 8 , s h . s a l e s : s a l e s _ Q 2 _ 2 0 0 8

This example imports the partitions s a l e s _ Q 1 _ 2 0 0 8and s a l e s _ Q 2 _ 2 0 0 8for the table s a l e sin the schema s h .

TABLESPACES
Default: There is no default Purpose Specifies that you want to perform a tablespace-mode import. Syntax and Description
T A B L E S P A C E S = t a b l e s p a c e _ n a m e[ ,. . . ]

Use T A B L E S P A C E Sto specify a list of tablespace names whose tables and dependent objects are to be imported from the source (full, schema, tablespace, or table-mode export dump file set or another database). During the following import situations, Data Pump automatically creates the tablespaces into which the data will be imported: The import is being done in F U L Lor T R A N S P O R T _ T A B L E S P A C E Smode The import is being done in table mode with T R A N S P O R T A B L E = A L W A Y S In all other cases, the tablespaces for the selected objects must already exist on the import database. You could also use the Import R E M A P _ T A B L E S P A C Eparameter to map the tablespace name to an existing tablespace on the import database. The use of filtering can restrict what is imported using this import mode. See "Filtering During Import Operations". Restrictions The length of the list of tablespace names specified for the T A B L E S P A C E Sparameter is limited to a maximum of 4 MB, unless you are using the N E T W O R K _ L I N Kparameter to a 10.2.0.3 or earlier database or to a read-only database. In such cases, the limit is 4 KB. Example The following is an example of using the T A B L E S P A C E Sparameter. It assumes that the tablespaces already exist. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pT A B L E S P A C E S = t b s _ 1 , t b s _ 2 , t b s _ 3 , t b s _ 4

This example imports all tables that have data in tablespaces t b s _ 1 ,t b s _ 2 ,t b s _ 3 , and t b s _ 4 .

TARGET_EDITION
Default: the default database edition on the system Purpose
oracle.su/docs/11g/server.112/e10701/dp_import.htm 26/38

8/9/13

Data Pump Import

Specifies the database edition into which objects should be imported. Syntax and Description
T A R G E T _ E D I T I O N = n a m e

If T A R G E T _ E D I T I O N = n a m eis specified, Data Pump Import creates all of the objects found in the dump file. Objects that are not editionable are created in all editions. For example, tables are not editionable, so if there is a table in the dump file, it will be created, and all editions will see it. Objects in the dump file that are editionable, such as procedures, are created only in the specified target edition. If this parameter is not specified, then the default edition on the target database is used, even if an edition was specified in the export job. If the specified edition does not exist or is not usable, an error message is returned. See Also: Oracle Database SQL Language Reference for information about how editions are created Oracle Database Advanced Application Developer's Guide for more information about the editions feature Restrictions This parameter is only useful if there are two or more versions of the same versionable objects in the database. The job version must be 11.2 or higher. See "VERSION". Example The following is an example of using the T A R G E T _ E D I T I O Nparameter:
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p _ d a t . d m pT A R G E T _ E D I T I O N = e x p _ e d i t i o n

This example assumes the existence of an edition named e x p _ e d i t i o non the system to which objects are being imported. Because no import mode is specified, the default of schema mode will be used.

TRANSFORM
Default: There is no default Purpose Enables you to alter object creation DDL for objects being imported. Syntax and Description
T R A N S F O R M=t r a n s f o r m _ n a m e : v a l u e [ : o b j e c t _ t y p e ]

The t r a n s f o r m _ n a m especifies the name of the transform. The possible options are as follows:
S E G M E N T _ A T T R I B U T E S-

If the value is specified as y , then segment attributes (physical attributes, storage attributes, tablespaces, and logging) are included, with appropriate DDL. The default is y .
S T O R A G E-

If the value is specified as y , the storage clauses are included, with appropriate DDL. The default is y . This parameter is ignored if S E G M E N T _ A T T R I B U T E S =n .
O I D-

If the value is specified as n , the assignment of the exported OID during the creation of object tables and types is inhibited. Instead, a new OID is assigned. This can be useful for cloning schemas, but does not affect referenced objects. The default value is y .
P C T S P A C E-

The v a l u esupplied for this transform must be a number greater than zero. It represents the percentage multiplier used to alter extent allocations and the size of datafiles. Note that you can use the P C T S P A C Etransform with the Data Pump Export S A M P L Eparameter so that the size of storage allocations matches the sampled data subset. (See "SAMPLE".) The type of v a l u especified depends on the transform used. Boolean values (y/n) are required for the S E G M E N T _ A T T R I B U T E S ,S T O R A G E , and O I Dtransforms. Integer values are required for the P C T S P A C Etransform. The o b j e c t _ t y p eis optional. If supplied, it designates the object type to which the transform will be applied. If no object type is specified then the transform applies to all valid object types. The valid object types for each transform are shown in Table 3-1. Table 3-1 Valid Object Types For the Data Pump Import TRANSFORM Parameter SEGMENT_ATTRIBUTES STORAGE
C L U S T E R

OID

PCTSPACE X

C O N S T R A I N T

I N C _ T Y P E

X
27/38

oracle.su/docs/11g/server.112/e10701/dp_import.htm

8/9/13
I N D E X

Data Pump Import

R O L L B A C K _ S E G M E N TX

T A B L E

T A B L E S P A C E

T Y P E

Example For the following example, assume that you have exported the e m p l o y e e stable in the h rschema. The SQL C R E A T E T A B L Estatement that results when you then import the table is similar to the following:
C R E A T ET A B L E" H R " . " E M P L O Y E E S " (" E M P L O Y E E _ I D "N U M B E R ( 6 , 0 ) , " F I R S T _ N A M E "V A R C H A R 2 ( 2 0 ) , " L A S T _ N A M E "V A R C H A R 2 ( 2 5 )C O N S T R A I N T" E M P _ L A S T _ N A M E _ N N "N O TN U L LE N A B L E , " E M A I L "V A R C H A R 2 ( 2 5 )C O N S T R A I N T" E M P _ E M A I L _ N N "N O TN U L LE N A B L E , " P H O N E _ N U M B E R "V A R C H A R 2 ( 2 0 ) , " H I R E _ D A T E "D A T EC O N S T R A I N T" E M P _ H I R E _ D A T E _ N N "N O TN U L LE N A B L E , " J O B _ I D "V A R C H A R 2 ( 1 0 )C O N S T R A I N T" E M P _ J O B _ N N "N O TN U L LE N A B L E , " S A L A R Y "N U M B E R ( 8 , 2 ) , " C O M M I S S I O N _ P C T "N U M B E R ( 2 , 2 ) , " M A N A G E R _ I D "N U M B E R ( 6 , 0 ) , " D E P A R T M E N T _ I D "N U M B E R ( 4 , 0 ) )P C T F R E E1 0P C T U S E D4 0I N I T R A N S1M A X T R A N S2 5 5N O C O M P R E S SL O G G I N G S T O R A G E ( I N I T I A L1 0 2 4 0N E X T1 6 3 8 4M I N E X T E N T S1M A X E X T E N T S1 2 1 P C T I N C R E A S E5 0F R E E L I S T S1F R E E L I S TG R O U P S1B U F F E R _ P O O LD E F A U L T ) T A B L E S P A C E" S Y S T E M ";

If you do not want to retain the S T O R A G Eclause or T A B L E S P A C Eclause, you can remove them from the C R E A T E S T A T E M E N Tby using the Import T R A N S F O R Mparameter. Specify the value of S E G M E N T _ A T T R I B U T E Sas n . This results in the exclusion of segment attributes (both storage and tablespace) from the table.
>i m p d ph rT A B L E S = h r . e m p l o y e e sD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r _ e m p . d m p T R A N S F O R M = S E G M E N T _ A T T R I B U T E S : n : t a b l e

The resulting C R E A T ET A B L Estatement for the e m p l o y e e stable would then look similar to the following. It does not contain a S T O R A G Eor T A B L E S P A C Eclause; the attributes for the default tablespace for the H Rschema will be used instead.
C R E A T ET A B L E" H R " . " E M P L O Y E E S " (" E M P L O Y E E _ I D "N U M B E R ( 6 , 0 ) , " F I R S T _ N A M E "V A R C H A R 2 ( 2 0 ) , " L A S T _ N A M E "V A R C H A R 2 ( 2 5 )C O N S T R A I N T" E M P _ L A S T _ N A M E _ N N "N O TN U L LE N A B L E , " E M A I L "V A R C H A R 2 ( 2 5 )C O N S T R A I N T" E M P _ E M A I L _ N N "N O TN U L LE N A B L E , " P H O N E _ N U M B E R "V A R C H A R 2 ( 2 0 ) , " H I R E _ D A T E "D A T EC O N S T R A I N T" E M P _ H I R E _ D A T E _ N N "N O TN U L LE N A B L E , " J O B _ I D "V A R C H A R 2 ( 1 0 )C O N S T R A I N T" E M P _ J O B _ N N "N O TN U L LE N A B L E , " S A L A R Y "N U M B E R ( 8 , 2 ) , " C O M M I S S I O N _ P C T "N U M B E R ( 2 , 2 ) , " M A N A G E R _ I D "N U M B E R ( 6 , 0 ) , " D E P A R T M E N T _ I D "N U M B E R ( 4 , 0 ) ) ;

As shown in the previous example, the S E G M E N T _ A T T R I B U T E Stransform applies to both storage and tablespace attributes. To omit only the S T O R A G Eclause and retain the T A B L E S P A C Eclause, you can use the S T O R A G Etransform, as follows:
>i m p d ph rT A B L E S = h r . e m p l o y e e sD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r _ e m p . d m p T R A N S F O R M = S T O R A G E : n : t a b l e

The S E G M E N T _ A T T R I B U T E Sand S T O R A G Etransforms can be applied to all applicable table and index objects by not specifying the object type on the T R A N S F O R Mparameter, as shown in the following command:
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = h r . d m pS C H E M A S = h rT R A N S F O R M = S E G M E N T _ A T T R I B U T E S : n

TRANSPORT_DATAFILES
Default: There is no default Purpose Specifies a list of datafiles to be imported into the target database by a transportable-mode import, or by a table-mode import if T R A N S P O R T A B L E = A L W A Y Swas set during the export. The datafiles must already exist on the target database system. Syntax and Description Restrictions The T R A N S P O R T _ D A T A F I L E Sparameter cannot be used in conjunction with the Q U E R Yparameter.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 28/38

8/9/13

Data Pump Import


T R A N S P O R T _ D A T A F I L E S = d a t a f i l e _ n a m e

The d a t a f i l e _ n a m emust include an absolute directory path specification (not a directory object name) that is valid on the system where the target database resides. At some point before the import operation, you must copy the datafiles from the source system to the target system. You can do this using any copy method supported by your operating stem. If desired, you can rename the files when you copy them to the target system (see Example 2). Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. See Also: "Use of Quotation Marks On the Data Pump Command Line" Example 1 The following is an example of using the T R A N S P O R T _ D A T A F I L E Sparameter. Assume you have a parameter file, t r a n s _ d a t a f i l e s . p a r ,with the following content:
D I R E C T O R Y = d p u m p _ d i r 1 D U M P F I L E = t t s . d m p T R A N S P O R T _ D A T A F I L E S = ' / u s e r 0 1 / d a t a / t b s 1 . d b f '

You can then issue the following command:


>i m p d ph rP A R F I L E = t r a n s _ d a t a f i l e s . p a r

Example 2 This example illustrates the renaming of data files as part of a transportable tablespace export and import operation. Assume that you have a datafile named e m p l o y e e s . d a ton your source system. 1. Using a method supported by your operating system, manually copy the data file named e m p l o y e e s . d a tfrom your source system to the system where your target database resides. As part of the copy operation, rename it to w o r k e r s . d a t . 2. Perform a transportable tablespace export of tablespace t b s _ 1 .
>e x p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = t t s . d m pT R A N S P O R T _ T A B L E S P A C E S = t b s _ 1

The metadata only (no data) for t b s _ 1is exported to a dump file named t t s . d m p . The actual data was copied over to the target database in step 1. 3. Perform a transportable tablespace import, specifying an absolute directory path for the data file named w o r k e r s . d a t :
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = t t s . d m p T R A N S P O R T _ D A T A F I L E S = ' / u s e r 0 1 / d a t a / w o r k e r s . d a t '

The metadata contained in t t s . d m pis imported and Data Pump then assigns the information in the w o r k e r s . d a t file to the correct place in the database.

TRANSPORT_FULL_CHECK
Default: n Purpose Specifies whether to verify that the specified transportable tablespace set is being referenced by objects in other tablespaces. Syntax and Description
T R A N S P O R T _ F U L L _ C H E C K = { y|n }

If T R A N S P O R T _ F U L L _ C H E C K = y , then Import verifies that there are no dependencies between those objects inside the transportable set and those outside the transportable set. The check addresses two-way dependencies. For example, if a table is inside the transportable set but its index is not, a failure is returned and the import operation is terminated. Similarly, a failure is also returned if an index is in the transportable set but the table is not. If T R A N S P O R T _ F U L L _ C H E C K = n ,then Import verifies only that there are no objects within the transportable set that are dependent on objects outside the transportable set. This check addresses a one-way dependency. For example, a table is not dependent on an index, but an index is dependent on a table, because an index without a table has no meaning. Therefore, if the transportable set contains a table, but not its index, then this check succeeds. However, if the transportable set contains an index, but not the table, the import operation is terminated. In addition to this check, Import always verifies that all storage segments of all tables (and their indexes) defined within the tablespace set specified by T R A N S P O R T _ T A B L E S P A C E Sare actually contained within the tablespace set. Restrictions This parameter is valid for transportable mode (or table mode when T R A N S P O R T A B L E = A L W A Y Swas specified on the
oracle.su/docs/11g/server.112/e10701/dp_import.htm 29/38

8/9/13

Data Pump Import

export) only when the N E T W O R K _ L I N Kparameter is specified. Example In the following example, s o u r c e _ d a t a b a s e _ l i n kwould be replaced with the name of a valid database link. The example also assumes that a datafile named t b s 6 . d b falready exists. Assume you have a parameter file, f u l l _ c h e c k . p a r , with the following content:
D I R E C T O R Y = d p u m p _ d i r 1 T R A N S P O R T _ T A B L E S P A C E S = t b s _ 6 N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k T R A N S P O R T _ F U L L _ C H E C K = y T R A N S P O R T _ D A T A F I L E S = ' / w k d i r / d a t a / t b s 6 . d b f '

You can then issue the following command:


>i m p d ph rP A R F I L E = f u l l _ c h e c k . p a r

TRANSPORT_TABLESPACES
Default: There is no default Purpose Specifies that you want to perform a transportable-tablespace-mode import over a network link. Syntax and Description
T R A N S P O R T _ T A B L E S P A C E S = t a b l e s p a c e _ n a m e[ ,. . . ]

Use the T R A N S P O R T _ T A B L E S P A C E Sparameter to specify a list of tablespace names for which object metadata will be imported from the source database into the target database. Because this is a transportable-mode import, the tablespaces into which the data is imported are automatically created by Data Pump.You do not need to pre-create them. However, the data files should be copied to the target database before starting the import. Depending on your operating system, the use of quotation marks when you specify a value for this parameter may also require that you use escape characters. Oracle recommends that you place this parameter in a parameter file, which can reduce the number of escape characters that might otherwise be needed on the command line. See Also: "Use of Quotation Marks On the Data Pump Command Line" Restrictions You cannot export transportable tablespaces and then import them into a database at a lower release level. The target database into which you are importing must be at the same or higher release level as the source database. The T R A N S P O R T _ T A B L E S P A C E Sparameter is valid only when the N E T W O R K _ L I N Kparameter is also specified. Transportable mode does not support encrypted columns. Example In the following example, the s o u r c e _ d a t a b a s e _ l i n kwould be replaced with the name of a valid database link. The example also assumes that a datafile named t b s 6 . d b fhas already been copied from the source database to the local system. Suppose you have a parameter file, t a b l e s p a c e s . p a r ,with the following content:
D I R E C T O R Y = d p u m p _ d i r 1 N E T W O R K _ L I N K = s o u r c e _ d a t a b a s e _ l i n k T R A N S P O R T _ T A B L E S P A C E S = t b s _ 6 T R A N S P O R T _ F U L L _ C H E C K = n T R A N S P O R T _ D A T A F I L E S = ' u s e r 0 1 / d a t a / t b s 6 . d b f '

You can then issue the following command:


>i m p d ph rP A R F I L E = t a b l e s p a c e s . p a r

TRANSPORTABLE
Default: N E V E R Purpose Specifies whether the transportable option should be used during a table mode import (specified with the T A B L E S parameter) to import only metadata for specific tables, partitions, and subpartitions. Syntax and Description
T R A N S P O R T A B L E={ A L W A Y S|N E V E R }

The definitions of the allowed values are as follows:


A L W A Y S-

Instructs the import job to use the transportable option. If transportable is not possible, the job will fail. The
30/38

oracle.su/docs/11g/server.112/e10701/dp_import.htm

8/9/13

Data Pump Import

transportable option imports only metadata for the specified tables, partitions, or subpartitions specified by the T A B L E S parameter. You must copy the actual data files to the target database. See "Using Data File Copying to Move Data".
N E V E R-

Instructs the import job to use either the direct path or external table method to load data rather than the transportable option. This is the default. If only a subset of a table's partitions are imported and the T R A N S P O R T A B L E = A L W A Y Sparameter is used, then each partition becomes a non-partitioned table. If only a subset of a table's partitions are imported and the T R A N S P O R T A B L Eparameter is not used or is set to N E V E R(the default), then: If P A R T I T I O N _ O P T I O N S = D E P A R T I T I O Nis used, each partition is created as a non-partitioned table. If P A R T I T I O N _ O P T I O N Sis not used, the complete table is created. That is, all the metadata for the complete table is present so that the table definition looks the same on the target system as it did on the source. But only the data for the specified partitions is inserted into the table. Restrictions The Import T R A N S P O R T A B L Eparameter is valid only if the N E T W O R K _ L I N Kparameter is also specified. The T R A N S P O R T A B L Eparameter is only valid in table mode imports (the tables do not have to be partitioned or subpartitioned). The schema performing a transportable import requires the D A T A P U M P _ E X P _ F U L L _ D A T A B A S Erole on the source database and the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole on the target database. To make full use of the T R A N S P O R T A B L Eparameter, the C O M P A T I B L Einitialization parameter must be set to at least 11.0.0. Example The following example shows the use of the T R A N S P O R T A B L Eparameter during a network link import.
>i m p d ps y s t e mT A B L E S = h r . s a l e sT R A N S P O R T A B L E = a l w a y s D I R E C T O R Y = d p u m p _ d i r 1N E T W O R K _ L I N K = d b s 1P A R T I T I O N _ O P T I O N S = d e p a r t i t i o n T R A N S P O R T _ D A T A F I L E S = d a t a f i l e _ n a m e

VERSION
Default: C O M P A T I B L E Purpose Specifies the version of database objects to be imported (that is, only database objects and attributes that are compatible with the specified version will be imported). Note that this does not mean that Data Pump Import can be used with versions of Oracle Database earlier than 10.1. Data Pump Import only works with Oracle Database 10g release 1 (10.1) or later. The V E R S I O Nparameter simply allows you to identify the version of the objects being imported. Syntax and Description
V E R S I O N = { C O M P A T I B L E|L A T E S T|v e r s i o n _ s t r i n g }

This parameter can be used to load a target system whose Oracle database is at an earlier compatibility version than that of the source system. Database objects or attributes on the source system that are incompatible with the specified version will not be moved to the target. For example, tables containing new datatypes that are not supported in the specified version will not be imported. Legal values for this parameter are as follows:
C O M P A T I B L E-

This is the default value. The version of the metadata corresponds to the database compatibility level. Database compatibility must be set to 9.2.0 or higher.
L A T E S T-

The version of the metadata corresponds to the database version. A specific database version (for example, 11.2.0). In Oracle Database 11g, this value must be

v e r s i o n _ s t r i n g-

9.2.0 or higher. See Also: "Moving Data Between Different Database Versions" Example The following is an example of using the V E R S I O Nparameter. You can create the e x p f u l l . d m pdump file used in this example by running the example provided for the Export F U L Lparameter. See "FULL".
>i m p d ph rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p f u l l . d m pT A B L E S = e m p l o y e e s V E R S I O N = L A T E S T

Commands Available in Import's Interactive-Command Mode


In interactive-command mode, the current job continues running, but logging to the terminal is suspended and the Import prompt (I m p o r t > ) is displayed.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 31/38

8/9/13

Data Pump Import

To start interactive-command mode, do one of the following: From an attached client, press Ctrl+C. From a terminal other than the one on which the job is running, use the A T T A C Hparameter to attach to the job. This is a useful feature in situations in which you start a job at one location and need to check on it at a later time from a different location. Table 3-2 lists the activities you can perform for the current job from the Data Pump Import prompt in interactivecommand mode. Table 3-2 Supported Activities in Data Pump Import's Interactive-Command Mode Activity Exit interactive-command mode. Command Used CONTINUE_CLIENT

Stop the import client session, but leave the current job running.

EXIT_CLIENT

Display a summary of available commands.

HELP

Detach all currently attached client sessions and kill the current job.

KILL_JOB

Increase or decrease the number of active worker processes for the current job. PARALLEL This command is valid only in Oracle Database Enterprise Edition.

Restart a stopped job to which you are attached.

START_JOB

Display detailed status for the current job.

STATUS

Stop the current job.

STOP_JOB

The following are descriptions of the commands available in the interactive-command mode of Data Pump Import.

CONTINUE_CLIENT
Purpose Changes the mode from interactive-command mode to logging mode. Syntax and Description
C O N T I N U E _ C L I E N T

In logging mode, the job status is continually output to the terminal. If the job is currently stopped, then C O N T I N U E _ C L I E N T will also cause the client to attempt to start the job. Example
I m p o r t >C O N T I N U E _ C L I E N T

EXIT_CLIENT
Purpose Stops the import client session, exits Import, and discontinues logging to the terminal, but leaves the current job running. Syntax and Description
E X I T _ C L I E N T

Because E X I T _ C L I E N Tleaves the job running, you can attach to the job at a later time if it is still executing or in a stopped state. To see the status of the job, you can monitor the log file for the job or you can query the U S E R _ D A T A P U M P _ J O B S view or the V $ S E S S I O N _ L O N G O P Sview. Example
I m p o r t >E X I T _ C L I E N T

HELP
Purpose Provides information about Data Pump Import commands available in interactive-command mode.
oracle.su/docs/11g/server.112/e10701/dp_import.htm 32/38

8/9/13

Data Pump Import

Syntax and Description


H E L P

Displays information about the commands available in interactive-command mode. Example


I m p o r t >H E L P

KILL_JOB
Purpose Detaches all currently attached client sessions and then kills the current job. It exits Import and returns to the terminal prompt. Syntax and Description
K I L L _ J O B

A job that is killed using K I L L _ J O Bcannot be restarted. All attached clients, including the one issuing the K I L L _ J O B command, receive a warning that the job is being killed by the current user and are then detached. After all clients are detached, the job's process structure is immediately run down and the master table and dump files are deleted. Log files are not deleted. Example
I m p o r t >K I L L _ J O B

PARALLEL
Purpose Enables you to increase or decrease the number of active worker processes and/or PQ slaves for the current job. Syntax and Description
P A R A L L E L = i n t e g e r P A R A L L E Lis available as both a command-line parameter and

an interactive-mode parameter. You set it to the desired number of parallel processes. An increase takes effect immediately if there are enough resources and if there is enough work requiring parallelization. A decrease does not take effect until an existing process finishes its current task. If the integer value is decreased, workers are idled but not deleted until the job exits. See Also: "PARALLEL" for more information about parallelism Restrictions
P A R A L L E Lis available only in Enterprise Edition.

Example
I m p o r t >P A R A L L E L = 1 0

START_JOB
Purpose Starts the current job to which you are attached. Syntax and Description
S T A R T _ J O B [ = s k i p _ c u r r e n t = y ]

The S T A R T _ J O Bcommand restarts the job to which you are currently attached (the job cannot be currently executing). The job is restarted with no data loss or corruption after an unexpected failure or after you issue a S T O P _ J O Bcommand, provided the dump file set and master table remain undisturbed. The S K I P _ C U R R E N Toption allows you to restart a job that previously failed to restart because execution of some DDL statement failed. The failing statement is skipped and the job is restarted from the next work item. Neither SQLFILE jobs nor transportable-tablespace-mode imports are restartable. Example
I m p o r t >S T A R T _ J O B

STATUS
Purpose Displays the cumulative status of the job, along with a description of the current operation. A completion percentage for the
oracle.su/docs/11g/server.112/e10701/dp_import.htm 33/38

8/9/13

Data Pump Import

job is also returned. Syntax and Description


S T A T U S [ = i n t e g e r ]

You have the option of specifying how frequently, in seconds, this status should be displayed in logging mode. If no value is entered or if the default value of 0is used, the periodic status display is turned off and status is displayed only once. This status information is written only to your standard output device, not to the log file (even if one is in effect). Example The following example will display the current job status and change the logging mode display interval to two minutes (120 seconds).
I m p o r t >S T A T U S = 1 2 0

STOP_JOB
Purpose Stops the current job either immediately or after an orderly shutdown, and exits Import. Syntax and Description
S T O P _ J O B [ = I M M E D I A T E ]

If the master table and dump file set are not disturbed when or after the S T O P _ J O Bcommand is issued, the job can be attached to and restarted at a later time with the S T A R T _ J O Bcommand. To perform an orderly shutdown, use S T O P _ J O B(without any associated value). A warning requiring confirmation will be issued. An orderly shutdown stops the job after worker processes have finished their current tasks. To perform an immediate shutdown, specify S T O P _ J O B =I M M E D I A T E . A warning requiring confirmation will be issued. All attached clients, including the one issuing the S T O P _ J O Bcommand, receive a warning that the job is being stopped by the current user and they will be detached. After all clients are detached, the process structure of the job is immediately run down. That is, the master process will not wait for the worker processes to finish their current tasks. There is no risk of corruption or data loss when you specify S T O P _ J O B = I M M E D I A T E . However, some tasks that were incomplete at the time of shutdown may have to be redone at restart time. Example
I m p o r t >S T O P _ J O B = I M M E D I A T E

Examples of Using Data Pump Import


This section provides examples of the following ways in which you might use Data Pump Import: Performing a Data-Only Table-Mode Import Performing a Schema-Mode Import Performing a Network-Mode Import For information that will help you to successfully use these examples, see "Using the Import Parameter Examples".

Performing a Data-Only Table-Mode Import


Example 3-1 shows how to perform a data-only table-mode import of the table named e m p l o y e e s . It uses the dump file created in Example 2-1. Example 3-1 Performing a Data-Only Table-Mode Import
>i m p d ph rT A B L E S = e m p l o y e e sC O N T E N T = D A T A _ O N L YD U M P F I L E = d p u m p _ d i r 1 : t a b l e . d m p N O L O G F I L E = y

The C O N T E N T = D A T A _ O N L Yparameter filters out any database object definitions (metadata). Only table row data is loaded.

Performing a Schema-Mode Import


Example 3-2 shows a schema-mode import of the dump file set created in Example 2-4. Example 3-2 Performing a Schema-Mode Import
>i m p d ph rS C H E M A S = h rD I R E C T O R Y = d p u m p _ d i r 1D U M P F I L E = e x p s c h e m a . d m p E X C L U D E = C O N S T R A I N T , R E F _ C O N S T R A I N T , I N D E XT A B L E _ E X I S T S _ A C T I O N = R E P L A C E

The E X C L U D Eparameter 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 E X C L U D Estatement. If an object is excluded, all of its dependent objects are also excluded.The T A B L E _ E X I S T S _ A C T I O N = R E P L A C Eparameter tells Import to drop the table if it already exists and to then re-create and load it using the dump file contents.

Performing a Network-Mode Import


oracle.su/docs/11g/server.112/e10701/dp_import.htm 34/38

8/9/13

Data Pump Import

Example 3-3 performs a network-mode import where the source is the database specified by the N E T W O R K _ L I N K parameter. Example 3-3 Network-Mode Import of Schemas
>i m p d ph rT A B L E S = e m p l o y e e sR E M A P _ S C H E M A = h r : s c o t tD I R E C T O R Y = d p u m p _ d i r 1 N E T W O R K _ L I N K = d b l i n k

This example imports the e m p l o y e e stable from the h rschema into the s c o t tschema. The d b l i n kreferences a source database that is different than the target database. To remap the schema, user h rmust have the D A T A P U M P _ I M P _ F U L L _ D A T A B A S Erole on the local database and the D A T A P U M P _ E X P _ F U L L _ D A T A B A S Erole on the source database.
R E M A P _ S C H E M Aloads all the objects from the source schema into

the target schema.

See Also: "NETWORK_LINK" for more information about database links

Syntax Diagrams for Data Pump Import


This section provides syntax diagrams for Data Pump Import. These diagrams use standard SQL syntax notation. For more information about SQL syntax notation, see Oracle Database SQL Language Reference. ImpInit

Description of the illustration impinit.gif ImpStart

Description of the illustration impstart.gif ImpModes

Description of the illustration impmodes.gif ImpOpts

oracle.su/docs/11g/server.112/e10701/dp_import.htm

35/38

8/9/13

Data Pump Import

Description of the illustration impopts.gif ImpFilter

Description of the illustration impfilter.gif ImpRacOpt


oracle.su/docs/11g/server.112/e10701/dp_import.htm 36/38

8/9/13

Data Pump Import

Description of the illustration impracopt.gif ImpRemap

Description of the illustration impremap.gif ImpFileOpts

Description of the illustration impfileopts.gif ImpNetworkOpts

Description of the illustration impnetopts.gif ImpDynOpts

oracle.su/docs/11g/server.112/e10701/dp_import.htm

37/38

8/9/13

Data Pump Import

Description of the illustration impdynopts.gif

Previous Next

Copyright 1996, 2009, Oracle and/or its affiliates. All rights reserved. Home Book ContentsIndex Master Contact List Index Us Legal Notices

oracle.su/docs/11g/server.112/e10701/dp_import.htm

38/38

You might also like