| Oracle Tablespace Groups Version 11.2.0.3 |
|---|
| General Information | ||||
A tablespace group enables a user to consume temporary space from multiple tablespaces.
A tablespace group has the following characteristics:
You do not explicitly create a tablespace group. Rather, it is created implicitly when you assign the first temporary tablespace to the group. The group is deleted when the last temporary tablespace it contains is removed from it. Using a tablespace group, rather than a single temporary tablespace, can alleviate problems caused where one tablespace is inadequate to hold the results of a sort, particularly on a table that has many partitions. A tablespace group enables parallel execution servers in a single parallel operation to use multiple temporary tablespaces. |
||||
| Data Dictionary Objects |
|
|||
| Create Tablespace Group | ||||
| With Create Tablespace | CREATE TEMPORARY TABLESPACE <tablespace_name> TEMP <data_file_path_and_name> SIZE <integer> <K | M | G | T | P | E> TABLESPACE GROUP <group_name>; |
|||
| CREATE TEMPORARY TABLESPACE batchtemp TEMPFILE '/u02/oradata/temp04.dbf' SIZE 2E TABLESPACE GROUP temp_grp; desc dba_tablespace_groups SELECT * FROM dba_tablespace_groups; |
||||
| With Alter Tablespace | ALTER TABLESPACE <tablespace_name> TABLESPACE GROUP <group_name>; |
|||
| ALTER TABLESPACE tools TABLESPACE GROUP apps_grp; SELECT * FROM dba_tablespace_groups; |
||||
| Remove A Group Member | ||||
| Remove Tablespace from Group | ALTER TABLESPACE <tablespace_name> TABLESPACE GROUP ''; | |||
| ALTER TABLESPACE batchtemp TABLESPACE GROUP ''; SELECT * FROM dba_tablespace_groups; |
||||
| Default Temporary Tablespace Assignment | ||||
| Make a Group the Default Group | ALTER DATABASE <tablespace_name> DEFAULT TEMPORARY TABLESPACE <group_name>; |
|||
| ALTER DATABASE orabase DEFAULT TEMPORARY TABLESPACE app_grp; SELECT * FROM dba_tablespace_groups; |
||||
| Related Topics |
| DDL Statements |
| Tablespaces |
| This site is maintained by Dan Morgan. Last Updated: | This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2013 Daniel A. Morgan All Rights Reserved | |||||||||
|
|
||||||||||