Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Database \ Oracle create a temporary table space group     - Linux system man help tips (Linux)

- To configure Samba to share files with Windows under CentOS (Linux)

- Quick Install software RAID on Linux (Linux)

- Ubuntu configuration SVN and http mode access (Server)

- Django1.8 return json json string and the string contents of the received post (Programming)

- Oracle bug Ora-04043 (Database)

- Java development specifications summary (Programming)

- How to restart after a crash Cinnamon (Linux)

- Oracle VirtualBox Problem Solving Case (Linux)

- Hackers is how the invasion and control of Things devices? (Linux)

- RHEL5 multipath configuration (Linux)

- Linux and Unix systems really do network more secure (Linux)

- How to use Quagga BGP (Border Gateway Protocol) router to filter BGP routing (Linux)

- Text editing and viewing text Linux command (Linux)

- OpenSSL: implementation creates a private CA, certificate signing request Explanation (Server)

- OpenWrt modify flash size (Linux)

- Use top to monitor the remote server (Server)

- Ubuntu 15.04 installation Powercommands 2.0 (Linux)

- Elasticsearch 2.20 Beginners: aggregation (Server)

- iOS development -Launch Image and Launchscreen (Programming)

 
         
  Oracle create a temporary table space group
     
  Add Date : 2018-11-21      
         
         
         
  In Oracle 11g later, the user can create a temporary table space group, a group of temporary table space can contain one or more temporary table spaces.
Temporary tablespace group must consist of at least a temporary tablespaces, and no clear maximum limit on the number.
If you remove all the members of a temporary table space group, the group is also automatically deleted.
The name of the temporary table space is not the same as the name of the temporary tablespace group.
Assigned to the user in a temporary table space, temporary table space can use the name instead of the actual group of temporary table space name; when allocated to the database default temporary table space, you can also use the name of the temporary table space group.
Temporary table space group
Create a temporary table space group
Temporary tablespace group does not require specially created, just you need to create a temporary table space,
Use teblespace group statement assigned to a group.


View the temporary table space group information.
Data Dictionary dba_tablespace_grops


Mobile temporary table space
Use alter tablespace statement


SQL> create temporary tablespace tempgroup
  2 tempfile 'f: \ oracledata \ tempgroup01.dbf' size 5m
  3 tablespace group group01;
Table space has been created.
SQL> select * from dba_tablespace_groups;
GROUP_NAME TABLESPACE_NAME
------------------------------ -------------------- ----------
GROUP01 TEMPGROUP


SQL> create temporary tablespace tempgroup02
  2 tempfile 'f: \ oracledata \ tempgroup02.dbf' size 5m
  3 tablespace group group02;
Table space has been created.
SQL> select * from dba_tablespace_groups;
GROUP_NAME TABLESPACE_NAME
------------------------------ -------------------- ----------
GROUP01 TEMPGROUP
GROUP02 TEMPGROUP02


SQL> alter tablespace tempgroup tablespace group group02;
Table space has changed.
SQL> select * from dba_tablespace_groups;
GROUP_NAME TABLESPACE_NAME
------------------------------ -------------------- ----------
GROUP02 TEMPGROUP
GROUP02 TEMPGROUP02
     
         
         
         
  More:      
 
- CentOS7 complete step to install Hadoop2.7 (Server)
- Depth understanding of Python character set encoding (Programming)
- Swift defined type conversion and type aliases (typealias) (Programming)
- How to install and use the malware detection tool LMD and ClamAV antivirus engine on Linux (Linux)
- You may not know the Linux command-line network monitoring tool (Linux)
- Based on Google Cloud Storage Mirroring open Maven Central Repository (Server)
- Linux fast set ip bond (Linux)
- Ubuntu system process is bound CPU core (Linux)
- Oracle GoldenGate encryption (Database)
- shell script: MySQL monitoring service is normal (Database)
- Linux start the process (Linux)
- Nginx Proxy timeout Troubleshooting (Server)
- Using RAID in Linux: Create a RAID 5 (Linux)
- Web database security tips (Linux)
- When Linux Detailed time zone and common function of time (Linux)
- GO five stages of language learning (Programming)
- Executable file format Explanation under Linux (Linux)
- The maximum subsequence algorithm and optimization problems (Programming)
- Android Studio Installation and Configuration Guide tutorial (Linux)
- Bash Getopts - let your script supports command line parameters (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.