Oracle® Database PL/SQL Packages and Types Reference 11g Release 2 (11.2) Part Number E16760-05 |
|
|
PDF · Mobi · ePub |
The DBMS_STREAMS_TABLESPACE_ADM
package, one of a set of Oracle Streams packages, provides administrative interfaces for copying tablespaces between databases and moving tablespaces from one database to another. This package uses transportable tablespaces, Data Pump, the DBMS_FILE_TRANSFER
package, and the DBMS_FILE_GROUP
package.
This chapter contains the following topics:
Using DBMS_STREAMS_TABLESPACE_ADM
Overview
Security Model
See Also:
Oracle Streams Concepts and Administration and Oracle Streams Replication Administrator's Guide for more information about this package and Oracle StreamsThis section contains topics which relate to using the DBMS_STREAMS_TABLESPACE_ADM
package.
Either a simple tablespace or a self-contained tablespace set must be specified in each procedure in this package.
A self-contained tablespace has no references from the tablespace pointing outside of the tablespace. For example, if an index in the tablespace is for a table in a different tablespace, then the tablespace is not self-contained. A simple tablespace is a self-contained tablespace that uses only one datafile.
A simple tablespace must be specified in the following procedures:
A self-contained tablespace set has no references from inside the set of tablespaces pointing outside of the set of tablespaces. For example, if a partitioned table is partially contained in the set of tablespaces, then the set of tablespaces is not self-contained.
A self-contained tablespace set must be specified in the following procedures:
To determine whether a set of tablespaces is self-contained, use the TRANSPORT_SET_CHECK
procedure in the Oracle supplied package DBMS_TTS
.
See Also:
Oracle Database Administrator's Guide for more information about self-contained tablespaces and tablespace setsSecurity on this package can be controlled in either of the following ways:
Granting EXECUTE
on this package to selected users or roles.
Granting EXECUTE_CATALOG_ROLE
to selected users or roles.
If subprograms in the package are run from within a stored procedure, then the user who runs the subprograms must be granted EXECUTE
privilege on the package directly. It cannot be granted through a role.
The DBMS_STREAMS_TABLESPACE_ADM
package defines RECORD
types and TABLE
types.
Contains the names of one or more directory objects. Each name must be a directory object created using the SQL statement CREATE
DIRECTORY
.
TYPE DIRECTORY_OBJECT_SET IS TABLE OF VARCHAR2(32) INDEX BY BINARY_INTEGER;
Contains the directory object associated with a directory and the name of the file in the directory.
TYPE FILE IS RECORD( directory_object VARCHAR2(32), file_name VARCHAR2(4000));
Field | Description |
---|---|
|
The name of a directory object. You must specify the name of a directory object created using the SQL statement |
|
The name of the file in the corresponding directory associated with the directory object |
Contains one or more files.
TYPE FILE_SET IS TABLE OF FILE INDEX BY BINARY_INTEGER;
Contains the names of one or more tablespaces.
TYPE TABLESPACE_SET IS TABLE OF VARCHAR2(32) INDEX BY BINARY_INTEGER;
Table 149-2 DBMS_STREAMS_TABLESPACE_ADM Package Subprograms
Subprogram | Description |
---|---|
Uses Data Pump to import a simple tablespace previously exported using the |
|
Uses Data Pump to import a self-contained tablespace set previously exported using the |
|
Clones a simple tablespace. The tablespace can later be attached to a database. |
|
Clones a set of self-contained tablespaces. The tablespaces can later be attached to a database. |
|
Detaches a simple tablespace. The tablespace can later be attached to a database. |
|
Detaches a set of self-contained tablespaces. The tablespaces can later be attached to a database. |
|
Copies a simple tablespace from a remote database and attaches it to the current database |
|
Copies a set of self-contained tablespaces from a remote database and attaches the tablespaces to the current database |
Note:
All subprograms commit unless specified otherwise.This procedure uses Data Pump to import a simple tablespace previously exported using the DBMS_STREAMS_TABLESPACE_ADM
package, Data Pump export, or the Recovery Manager (RMAN) TRANSPORT
TABLESPACE
command.
DBMS_STREAMS_TABLESPACE_ADM.ATTACH_SIMPLE_TABLESPACE( directory_object IN VARCHAR2, tablespace_file_name IN VARCHAR2, converted_file_name IN VARCHAR2 DEFAULT NULL, datafile_platform IN VARCHAR2 DEFAULT NULL, tablespace_name OUT VARCHAR2);
Table 149-3 ATTACH_SIMPLE_TABLESPACE Procedure Parameters
Parameter | Description |
---|---|
|
The directory that contains the Data Pump dump file and the datafile for the tablespace. You must specify the name of a directory object created using the SQL statement The name of the Data Pump export dump file must be the same as the data file name for the tablespace, except with a The Data Pump import log file is written to this directory. The name of the log file is the same as the data file name for the tablespace, except with an If |
|
The name of the datafile for the tablespace being imported. If |
|
If the If non- If non- If |
|
Specify Specify the platform for the export database if the platform is different for the export database and the import database. You can determine the platform of a database by querying the |
|
Contains the name of the attached tablespace. The attached tablespace is read-only. Use an |
To run this procedure, a user must meet the following requirements:
Have IMP_FULL_DATABASE
role
Have READ
and WRITE
privilege on the directory object that contains the Data Pump export dump file and the datafiles for the tablespaces in the set, specified by the directory_object
parameter
Automatic Storage Management (ASM) directories cannot be used with this procedure.
See Also:
OverviewThis procedure uses Data Pump to import a self-contained tablespace set previously exported using the DBMS_STREAMS_TABLESPACE_ADM
package, Data Pump export, or the Recovery Manager (RMAN) TRANSPORT
TABLESPACE
command.
This procedure is overloaded and consists of the following versions:
One version of the procedure uses a Data Pump job name in the datapump_job_name
parameter. This job performs the Data Pump import to complete the attach operation. In addition, if the platform at the export database is different than the local database platform, then this procedure optionally can create datafiles for the tablespace set that can be used with the local platform.
The other version of the procedure uses a file group that can consist of multiple versions of the tablespace set in a tablespace repository. A tablespace repository is a collection of tablespace sets in a file group repository. When this version of the procedure is run, a Data Pump import is performed. This version of the procedure uses the files in a file group version and can copy the export dump file, export log file, and the datafiles that comprise the tablespace set into the specified directories. The file group and version are specified using the file_group_name
and version_name
parameters, respectively. This version of the procedure does not require a datafiles platform specification if the platform at the export database is different than the local database platform. Instead, the tablespace set is migrated automatically to the correct platform when it is attached.
DBMS_STREAMS_TABLESPACE_ADM.ATTACH_TABLESPACES( datapump_job_name IN OUT VARCHAR2, dump_file IN FILE, tablespace_files IN FILE_SET, converted_files IN FILE_SET, datafiles_platform IN VARCHAR2 DEFAULT NULL, log_file IN FILE DEFAULT NULL, tablespace_names OUT TABLESPACE_SET); DBMS_STREAMS_TABLESPACE_ADM.ATTACH_TABLESPACES( file_group_name IN VARCHAR2, version_name IN VARCHAR2 DEFAULT NULL, datafiles_directory_object IN VARCHAR2 DEFAULT NULL, logfile_directory_object IN VARCHAR2 DEFAULT NULL, repository_db_link IN VARCHAR2 DEFAULT NULL, tablespace_names OUT TABLESPACE_SET);
Table 149-4 ATTACH_TABLESPACES Procedure Parameters
Parameter | Description |
---|---|
|
The Data Pump job name. Specify a Data Pump job name to adhere to naming conventions or to track the job more easily. If |
|
The file name of the Data Pump dump file to import. If |
|
The file set that contains the datafiles for the tablespace set being imported. If |
|
If the If non- If non- If |
|
Specify Specify the platform for the export database if the platform is different for the export database and the import database. You can determine the platform of a database by querying the |
|
Specify the log file name for the Data Pump import. If If a file exists with the same name as the log file in the directory, then the procedure overwrites the file. |
|
The name of the file group, specified as |
|
The name of the file group version to attach. If |
|
The directory object into which the datafiles and Data Pump export dump file are copied. The files are copied from the tablespace repository directories to this directory. If non- If |
|
The directory object into which the Data Pump import log file is placed. The system generates a log file name with the extension If |
|
If the file group is in a different database, then specify the name of the database link to the database that contains the file group. The database link must be accessible to the user who runs the procedure. If this parameter is non-
If |
|
Contains the names of the attached tablespaces. The attached tablespaces are read-only. Use |
The following sections contain usage notes for this procedure:
To run either version of this procedure, a user must meet the following requirements:
Have IMP_FULL_DATABASE
role
Have READ
and WRITE
privilege on the directory objects that contain the Data Pump export dump file and the datafiles for the tablespaces in the set, specified by the dump_file
and tablespace_files
parameters, or by the datafiles_directory_object
parameter
Have WRITE
privilege on the directory object that will hold the Data Pump import log file, specified by the log_file
parameter or logfile_directory_object
parameter if it is non-NULL
If the Data Pump job version of the procedure is run, then the user must have WRITE
privilege on the directory objects that will hold the converted datafiles for the tablespaces in the set if platform conversion is necessary. These directory objects are specified by the converted_files
parameter if it is non-NULL
.
If the file group version of the procedure is run, then the user must have the necessary privileges to manage the file group.
Procedures Used to Clone or Detach a Tablespace Set
After a tablespace set is cloned or detached using the CLONE_TABLESPACES
or DETACH_TABLEPSACES
procedure, respectively, the tablespace set can be attached to a database using the ATTACH_TABLESPACES
procedure. If the Data Pump job version of the CLONE_TABLESPACES
or DETACH_TABLEPSACES
procedure was used, then use the Data Pump job version of the ATTACH_TABLESPACES
procedure. If the file group version of the CLONE_TABLESPACES
or DETACH_TABLEPSACES
procedure was used, then use the file group version of the ATTACH_TABLESPACES
procedure.
When the Attach Database Is Different Than the Clone or Detach Database
You can attach a tablespace set to a different database than the database from which the tablespace set was cloned or detached. The two databases might or might not share a file system. If the two databases do not share a file system, then you must transfer the dump file and datafiles to the remote system using the DBMS_FILE_TRANSFER
package, FTP, or some other method. You can attach the tablespace set in one of the following ways depending on the version of the ATTACH_TABLESPACES
procedure you use:
If you use the Data Pump job version of the procedure, then specify the relevant files on the file system. The directory object names can be different in the databases.
If you use the file group version of the procedure, then you can use the repository_db_link
parameter to specify the database where tablespace repository resides. The directory objects for the files must exist and must match in the databases.
See Also:
Chapter 67, "DBMS_FILE_GROUP" for more information about file groups
Automatic Storage Management Directories
Automatic Storage Management (ASM) directories can be specified for the directory objects that store datafiles and export dump files, but ASM directories cannot be specified for directory objects that store log files.
See Also:
Oracle Database Utilities for information about specifying ASM directories for directory objectsThis procedure clones a simple tablespace. The specified tablespace must be online.
Specifically, this procedure performs the following actions:
Makes the specified tablespace read-only if it is not read-only
Uses Data Pump to export the metadata for the tablespace and places the dump file in the specified directory
Places the datafile for the specified tablespace in the specified directory
If this procedure made the tablespace read-only, then makes the tablespace read/write
In addition, this procedure optionally can create a datafile for the tablespace that can be used with a platform that is different than the local database platform.
DBMS_STREAMS_TABLESPACE_ADM.CLONE_SIMPLE_TABLESPACE( tablespace_name IN VARCHAR2, directory_object IN VARCHAR2, destination_platform IN VARCHAR2 DEFAULT NULL, tablespace_file_name OUT VARCHAR2);
Table 149-5 CLONE_SIMPLE_TABLESPACE Procedure Parameters
Parameter | Description |
---|---|
|
The tablespace to be cloned. If |
|
The directory where the Data Pump export dump file, the Data Pump export log file, and the datafile for the tablespace are placed. You must specify the name of a directory object created using the SQL statement The name of the Data Pump export dump file is the same as the data file name for the tablespace, except with a The name of the log file is the same as the data file name for the tablespace, except with a If |
|
Specify Specify the platform for the intended import database if the platform is different for the export database and the import database. You can determine the platform of a database by querying the |
|
Contains the name of the cloned tablespace datafile. This datafile is placed in the directory specified by the parameter |
To run this procedure, a user must meet the following requirements:
Have EXP_FULL_DATABASE
role
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
on a tablespace if the tablespace must be made read-only
Have READ
privilege on the directory object for the directory that contains the datafile for the tablespace. The name of this tablespace is specified by the tablespace_name
parameter. If a directory object does not exist for this directory, then create the directory object and grant the necessary privileges before you run this procedure.
Have READ
and WRITE
privilege on the directory object that will contain the Data Pump export dump file, specified by the directory_object
parameter
If the file group version of the procedure is run, then the user must have the necessary privileges to manage file group.
After cloning a tablespace using this procedure, you can add the tablespace to a different database using the ATTACH_SIMPLE_TABLESPACE
procedure. If the database is a remote database and you want to use the ATTACH_SIMPLE_TABLESPACE
procedure, then you can transfer the dump file and datafile to the remote system using the DBMS_FILE_TRANSFER
package, FTP, or some other method.
Automatic Storage Management (ASM) directories cannot be used with this procedure.
This procedure clones a set of self-contained tablespaces. All of the tablespaces in the specified tablespace set must be online.
Specifically, this procedure performs the following actions:
Makes any read/write tablespace in the specified tablespace set read-only
Uses Data Pump to export the metadata for the tablespaces in the tablespace set and places the dump file in the specified directory
Places the datafiles that comprise the specified tablespace set in the specified directory
If this procedure made a tablespace read-only, then makes the tablespace read/write
This procedure is overloaded and consists of the following versions:
One version of the procedure uses a Data Pump job name in the datapump_job_name
parameter. This job performs the Data Pump export. This version of the procedure completes the clone operation by placing the export dump file, export log file, and the datafiles that comprise the tablespace set in the specified directories, but the files are not added to a file group version. In addition, this version of the procedure optionally can create datafiles for the tablespace set that can be used with a platform that is different than the local database platform.
The other version of the procedure uses a file group that can consist of multiple versions of the tablespace set in a tablespace repository. A tablespace repository is a collection of tablespace sets in a file group repository. When this version of the procedure is run, a Data Pump export is performed, and this version of the procedure completes the clone operation by placing the export dump file, export log file, and the datafiles that comprise the tablespace set in the appropriate file group version. The file group and version are specified using the file_group_name
and version_name
parameters, respectively. This version of the procedure does not require a destination platform specification if the destination platform is different. Instead, the tablespace set is migrated automatically to the correct platform when it is attached at the destination database using the file group version of the ATTACH_TABLESPACES
procedure.
DBMS_STREAMS_TABLESPACE_ADM.CLONE_TABLESPACES( datapump_job_name IN OUT VARCHAR2, tablespace_names IN TABLESPACE_SET, dump_file IN FILE, tablespace_directory_objects IN DIRECTORY_OBJECT_SET, destination_platform IN VARCHAR2 DEFAULT NULL, log_file IN FILE DEFAULT NULL, tablespace_files OUT FILE_SET); DBMS_STREAMS_TABLESPACE_ADM.CLONE_TABLESPACES( tablespace_names IN TABLESPACE_SET, tablespace_directory_object IN VARCHAR2 DEFAULT NULL, log_file_directory_object IN VARCHAR2 DEFAULT NULL, file_group_name IN VARCHAR2, version_name IN VARCHAR2 DEFAULT NULL, repository_db_link IN VARCHAR2 DEFAULT NULL);
Table 149-6 CLONE_TABLESPACES Procedure Parameters
Parameter | Description |
---|---|
|
The Data Pump job name. Specify a Data Pump job name to adhere to naming conventions or to track the job more easily. If |
|
The tablespace set to be cloned. If |
|
The file name of the Data Pump dump file that is exported. If If the specified file exists, then the procedure raises an error. |
|
The set of directory objects into which the datafiles for the tablespaces are copied. If multiple directory objects are in the set, then the procedure copies a datafile to each directory object in the set in sequence. In this case, if the end of the directory object set is reached, then datafile copying starts again with the first directory object in the set. If |
|
Specify Specify the platform for the intended import database if the platform is different for the export database and the import database. You can determine the platform of a database by querying the |
|
Specify the log file name for the Data Pump export. If If a file exists with the same name as the log file in the directory, then the procedure overwrites the file. |
|
The directory object into which the data files are copied and Data Pump export dump file is placed. The system generates a dump file name with the extension If If |
|
The directory object into which the Data Pump export log file is placed. The system generates a log file name with the extension If |
|
The name of the file group, specified as If the specified file group does not exist, then the procedure creates it. |
|
The name of the version into which the cloned tablespace set is placed. The specified version name cannot be a positive integer. If the specified version does not exist, then the procedure creates it. If the specified version exists, then the procedure adds the tablespace set to the version. Only one Data Pump export dump file can exist in a version. If |
|
If the file group is in a remote database, then specify the name of the database link to the database that contains the file group. The database link must be accessible to the user who runs the procedure. If this parameter is non- If |
|
Contains the datafiles for the cloned tablespace set. These datafiles are placed in the directories specified by the directory objects in the parameter |
To run either version of this procedure, a user must meet the following requirements:
Have EXP_FULL_DATABASE
role
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
on a tablespace if the tablespace must be made read-only
Have READ
privilege on the directory objects for the directories that contain the datafiles for the tablespace set. The names of these tablespaces are specified by the tablespace_names
parameter. If a directory object does not exist for one or more of these directories, then create the directory objects and grant the necessary privileges before you run this procedure.
Have READ
and WRITE
privilege on the directory object that will contain the Data Pump export dump file, specified by the dump_file
parameter or the tablespace_directory_object
parameter
Have WRITE
privilege on the directory objects that will contain the copied datafiles for the tablespaces in the set, specified by the tablespace_directory_objects
parameter if non-NULL
or the tablespace_directory_object
parameter
Have WRITE
privilege on the directory object that will contain the Data Pump export log file, specified by the log_file
parameter if non-NULL
or the log_file_directory_object
parameter if non-NULL
If the file group version of the procedure is run, then the user must have the necessary privileges to manage the file group.
Automatic Storage Management (ASM) directories can be specified for the directory objects that store datafiles and export dump files, but ASM directories cannot be specified for directory objects that store log files.
After cloning a tablespace set using this procedure, you can attach the tablespaces to a different database using the ATTACH_TABLESPACES
procedure.
See Also:
Chapter 67, "DBMS_FILE_GROUP" for more information about file groups
This procedure detaches a simple tablespace. The specified tablespace must be online.
Specifically, this procedure performs the following actions:
Makes the specified tablespace read-only if it is not read-only
Uses Data Pump to export the metadata for the tablespace and places the dump file in the directory that contains the tablespace datafile
Drops the tablespace and its contents from the database
DBMS_STREAMS_TABLESPACE_ADM.DETACH_SIMPLE_TABLESPACE( tablespace_name IN VARCHAR2, directory_object OUT VARCHAR2, tablespace_file_name OUT VARCHAR2);
Table 149-7 DETACH_SIMPLE_TABLESPACE Procedure Parameters
Parameter | Description |
---|---|
|
The Data Pump job name. Specify a Data Pump job name to adhere to naming conventions or to track the job more easily. If |
|
Contains the directory where the Data Pump export dump file and the Data Pump export log file are placed. The procedure uses the directory of the datafile for the tablespace. Therefore, make sure a directory object created using the SQL statement The name of the Data Pump export dump file is the same as the data file name for the tablespace, except with a The name of the log file is the same as the data file name for the tablespace, except with a |
|
Contains the name of the detached tablespace datafile. |
To run this procedure, a user must meet the following requirements:
Have EXP_FULL_DATABASE
role
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have DROP
TABLESPACE
privilege
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
on a tablespace if the tablespace must be made read-only
Have READ
and WRITE
privilege on the directory object for the directory that contains the tablespace datafile. The name of this tablespace is specified by the tablespace_name
parameter. If a directory object does not exist for this directory, then create the directory object and grant the necessary privileges before you run this procedure. This directory also will contain the Data Pump export dump file generated by this procedure.
After detaching a tablespace using this procedure, you can add the tablespace to a different database using the ATTACH_SIMPLE_TABLESPACE
procedure. If the database is a remote database and you want to use the ATTACH_SIMPLE_TABLESPACE
procedure, then you can transfer the dump file and datafile to the remote system using the DBMS_FILE_TRANSFER
package, FTP, or some other method. You can use the two OUT
parameters in this procedure to accomplish the attach or pull operation.
Automatic Storage Management (ASM) directories cannot be used with this procedure.
Note:
Do not use theDETACH_SIMPLE_TABLESPACE
procedure on a tablespace if the tablespace is using the Oracle-managed files feature. If you do, then the datafile for the tablespace is dropped automatically when the tablespace is dropped.See Also:
ATTACH_SIMPLE_TABLESPACE Procedure and PULL_SIMPLE_TABLESPACE Procedure
Oracle Database Administrator's Guide for more information about the Oracle-managed files feature
This procedure detaches a set of self-contained tablespaces. All of the tablespaces in the specified tablespace set must be online and any table partitions must not span tablespaces in the tablespace set.
Specifically, this procedure performs the following actions:
Makes any read/write tablespace in the specified tablespace set read-only
Uses Data Pump to export the metadata for the tablespace set and places the dump file in the specified directory
Drops the tablespaces in the specified tablespace set and their contents from the database
This procedure does not move or copy the datafiles that comprise the specified tablespace set.
This procedure is overloaded and consists of the following versions:
One version of the procedure uses a Data Pump job name in the datapump_job_name
parameter. This job performs the Data Pump export. This version of the procedure completes the detach operation by placing the export dump file and export log file in the specified directories, but the files are not added to a file group version.
The other version of the procedure uses a file group that can consist of multiple versions of the tablespace set in a tablespace repository. A tablespace repository is a collection of tablespace sets in a file group repository. When this version of the procedure is run, a Data Pump export is performed, and this version of the procedure completes the detach operation by placing the export dump file and export log file in the appropriate file group version. The datafiles that comprise the tablespace set are not moved or copied, but they are referenced in the version that is detached. The file group and version are specified using the file_group_name
and version_name
parameters, respectively. Also, if the destination platform is different, then the tablespace set is migrated automatically to the correct platform when it is attached at the destination database using the file group version of the ATTACH_TABLESPACES
procedure.
Note:
Do not use theDETACH_TABLESPACES
procedure if any of the tablespaces in the tablespace set are using the Oracle-managed files feature. If you do, then the datafiles for these tablespaces are dropped automatically when the tablespaces are dropped.DBMS_STREAMS_TABLESPACE_ADM.DETACH_TABLESPACES( datapump_job_name IN OUT VARCHAR2, tablespace_names IN TABLESPACE_SET, dump_file IN FILE, log_file IN FILE DEFAULT NULL, tablespace_files OUT FILE_SET); DBMS_STREAMS_TABLESPACE_ADM.DETACH_TABLESPACES( tablespace_names IN TABLESPACE_SET, export_directory_object IN VARCHAR2 DEFAULT NULL, log_file_directory_object IN VARCHAR2 DEFAULT NULL, file_group_name IN VARCHAR2, version_name IN VARCHAR2 DEFAULT NULL, repository_db_link IN VARCHAR2 DEFAULT NULL);
Table 149-8 DETACH_TABLESPACES Procedure Parameters
Parameter | Description |
---|---|
|
The Data Pump job name. Specify a Data Pump job name to adhere to naming conventions or to track the job more easily. If |
|
The tablespace set to be detached. If |
|
The file name of the Data Pump dump file that is exported. If If the specified file exists, then the procedure raises an error. |
|
Specify the log file name for the Data Pump export. If If a file exists with the same name as the log file in the directory, then the procedure overwrites the file. |
|
Contains the names of the datafiles for the detached tablespace set. |
|
The directory object into which the Data Pump export dump file is placed. The system generates a dump file name with the extension If If |
|
The directory object into which the Data Pump export log file is placed. The system generates a log file name with the extension If |
|
The name of the file group, specified as If the specified file group does not exist, then the procedure creates it. |
|
The name of the version into which the detached tablespace set is placed. The specified version name cannot be a positive integer. If the specified version does not exist, then the procedure creates it. If the specified version exists, then procedure adds the tablespace set to the version. Only one Data Pump export dump file can exist in a version. If |
|
If the file group is in a remote database, then specify the name of the database link to the database that contains the file group. The database link must be accessible to the user who runs the procedure. If this parameter is non- If |
To run this either version of this procedure, a user must meet the following requirements:
Have EXP_FULL_DATABASE
role
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have DROP
TABLESPACE
privilege
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
on a tablespace if the tablespace must be made read-only
Have READ
privilege on the directory objects for the directories that contain the datafiles for the tablespace set. The names of these tablespaces are specified by the tablespace_names
parameter. If a directory object does not exist for one or more of these directories, then create the directory objects and grant the necessary privileges before you run this procedure.
Have READ
and WRITE
privilege on the directory object that will contain the Data Pump export dump file, specified by the dump_file
parameter or the export_directory_object
parameter
Have WRITE
privilege on the directory object that will contain the Data Pump export the log file, specified by the log_file
parameter if non-NULL
or by the log_file_directory_object
parameter if non-NULL
If the file group version of the procedure is run, then the user must have the necessary privileges to manage the file group.
Automatic Storage Management (ASM) directories can be specified for the directory objects that store datafiles and export dump files, but ASM directories cannot be specified for directory objects that store log files.
After detaching a tablespace set using this procedure, you can attach the tablespaces to a different database using the ATTACH_TABLESPACES
procedure.
See Also:
Chapter 67, "DBMS_FILE_GROUP" for more information about file groups
Oracle Database Administrator's Guide for more information about the Oracle-managed files feature
This procedure copies a simple tablespace from a remote database and attaches it to the current database. The specified tablespace at the remote database must be online.
Specifically, this procedure performs the following actions:
Makes the specified tablespace read-only at the remote database if it is not read-only
Uses Data Pump to export the metadata for the tablespace
Uses a database link and the DBMS_FILE_TRANSFER
package to transfer the datafile for the tablespace and the log file for the Data Pump export to the current database
Places the datafile for the specified tablespace and the log file for the Data Pump export in the specified directory at the local database
If this procedure made the tablespace read-only, then makes the tablespace read/write
Uses Data Pump to import the metadata for the tablespace in the local database
In addition, this procedure optionally can create a datafile for the tablespace that can be used with the local platform, if the platform at the remote database is different than the local database platform.
DBMS_STREAMS_TABLESPACE_ADM.PULL_SIMPLE_TABLESPACE( tablespace_name IN VARCHAR2, database_link IN VARCHAR2, directory_object IN VARCHAR2 DEFAULT NULL, conversion_extension IN VARCHAR2 DEFAULT NULL, convert_directory_object IN VARCHAR2 DEFAULT NULL);
Table 149-9 PULL_SIMPLE_TABLESPACE Procedure Parameters
Parameter | Description |
---|---|
|
The tablespace to be pulled. If |
|
The name of the database link to the database that contains the tablespace to pull. The database link must be accessible to the user who runs the procedure. If |
|
The directory object to which the datafile for the tablespace is copied on the local database. You must specify the name of a directory object created using the SQL statement The Data Pump import log file is written to this directory. The name of the log file is the same as the data file name for the tablespace, except with a If |
|
Specify If the platform is different for the export database and the import database, then specify an extension for the tablespace datafile that is different than the extension for the tablespace datafile at the remote database. In this case, the procedure transfers the datafile to the import database and converts it to be compatible with the current import database platform automatically. After conversion is complete, the original datafile is deleted at the import database. |
|
Specify If the platform is different for the export database and the import database, then specify a directory object in the local export database. The procedure uses the directory object for platform conversion before it transfers the files to the remote database. You must specify the name of a directory object created using the SQL statement |
To run this procedure, a user must meet the following requirements on the remote database:
Have the EXP_FULL_DATABASE
role
Have EXECUTE
privilege on the DBMS_STREAMS_TABLESPACE_ADM
package
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
privilege on a tablespace if the tablespace must be made read-only
Have READ
privilege on the directory object for the directory that contains the datafile for the tablespace. The name of this tablespace is specified by the tablespace_name
parameter. If a directory object does not exist for this directory, then create the directory object and grant the necessary privileges before you run this procedure.
To run this procedure, a user must meet the following requirements on the local database:
Have the roles IMP_FULL_DATABASE
and EXECUTE_CATALOG_ROLE
Have WRITE
privilege on the directory object that will contain the Data Pump export the log file, specified by the log_file
parameter if non-NULL
Have WRITE
privilege on the directory object that will hold the datafile for the tablespace, specified by the directory_object
parameter
Automatic Storage Management (ASM) directories cannot be used with this procedure.
See Also:
OverviewThis procedure copies a set of self-contained tablespaces from a remote database and attaches the tablespaces to the current database. All of the tablespaces in the specified tablespace set at the remote database must be online.
Specifically, this procedure performs the following actions:
Makes any read/write tablespace in the specified tablespace set at the remote database read-only
Uses Data Pump to export the metadata for the tablespaces in the tablespace set
Uses a database link and the DBMS_FILE_TRANSFER
package to transfer the datafiles for the tablespace set and the log file for the Data Pump export to the current database
Places the datafiles that comprise the specified tablespace set in the specified directories at the local database
Places the log file for the Data Pump export in the specified directory at the local database
If this procedure made a tablespace read-only, then makes the tablespace read/write
Uses Data Pump to import the metadata for the tablespaces in the tablespace set at the local database
In addition, this procedure optionally can create datafiles for the tablespace set that can be used with the local platform, if the platform at the remote database is different than the local database platform.
DBMS_STREAMS_TABLESPACE_ADM.PULL_TABLESPACES( datapump_job_name IN OUT VARCHAR2, database_link IN VARCHAR2, tablespace_names IN TABLESPACE_SET, tablespace_directory_objects IN DIRECTORY_OBJECT_SET, log_file IN FILE, conversion_extension IN VARCHAR2 DEFAULT NULL, convert_directory_object IN VARCHAR2 DEFAULT NULL);
Table 149-10 PULL_TABLESPACES Procedure Parameters
Parameter | Description |
---|---|
|
The Data Pump job name. Specify a Data Pump job name to adhere to naming conventions or to track the job more easily. If |
|
The name of the database link to the database that contains the tablespace set to pull. The database link must be accessible to the user who runs the procedure. If |
|
The tablespace set to be pulled. If |
|
The set of directory objects to which the datafiles for the tablespaces are copied. If multiple directory objects are in the set, then the procedure copies a datafile to each directory object in the set in sequence. In this case, if the end of the directory object set is reached, then datafile copying starts again with the first directory object in the set. If |
|
Specify the log file name for the Data Pump export. If If a file exists with the same name as the log file in the directory, then the procedure overwrites the file. |
|
Specify If the platform is different for the export database and the import database, then specify an extension for the tablespace datafiles that is different than the extension for the tablespace datafiles at the remote database. In this case, the procedure transfers the datafiles to the import database and converts them to be compatible with the current import database platform automatically. After conversion is complete, the original datafiles are deleted at the import database. |
|
Specify If the platform is different for the export database and the import database, then specify a directory object in the local export database. The procedure uses the directory object for platform conversion before it transfers the files to the remote database. You must specify the name of a directory object created using the SQL statement |
To run this procedure, a user must meet the following requirements on the remote database:
Have the EXP_FULL_DATABASE
role
Have EXECUTE
privilege on the DBMS_STREAMS_TABLESPACE_ADM
package
Have access to at least one data dictionary view that contains information about the tablespaces. These views include DBA_TABLESPACES
and USER_TABLESPACES
.
Have MANAGE
TABLESPACE
or ALTER
TABLESPACE
privilege on a tablespace if the tablespace must be made read-only
Have READ
privilege on the directory objects for the directories that contain the datafiles for the tablespace set. The names of these tablespaces are specified by the tablespace_names
parameter. If a directory object does not exist for one or more of these directories, then create the directory objects and grant the necessary privileges before you run this procedure.
To run this procedure, a user must meet the following requirements on the local database:
Have the roles IMP_FULL_DATABASE
and EXECUTE_CATALOG_ROLE
Have WRITE
privilege on the directory object that will contain the Data Pump export the log file, specified by the log_file
parameter if non-NULL
Have WRITE
privilege on the directory objects that will hold the datafiles for the tablespaces in the set, specified by the tablespace_directory_objects
parameter
Automatic Storage Management (ASM) directories can be specified for the directory objects that store datafiles and export dump files, but ASM directories cannot be specified for directory objects that store log files.
See Also:
Overview