Home >Database >Mysql Tutorial >oracle11G的临时表空间

oracle11G的临时表空间

WBOY
WBOYOriginal
2016-06-07 15:32:091326browse

创建临时表空间(不属于组): create temporary tablespacetemp2 tempfile 'D:\app\Administrator\oradata\orcl\temp2a.dbf' size 10m autoextend on; 创建临时表空间(属于组): create temporary tablespace temp3 tempfile ‘D:\app\Administrator\oradata\

     创建临时表空间(不属于组):

     create temporary tablespacetemp2  tempfile 

     'D:\app\Administrator\oradata\orcl\temp2a.dbf' size 10mautoextend on;

     创建临时表空间(属于组):

     create temporary tablespace temp3  tempfile 

     ‘D:\app\Administrator\oradata\orcl\temp3a.dbf’ size 10m

     autoextend on  tablespace  group  temp_grp;  

     把某个临时表空间关联到组里:

     alter tablespacetemp2 tablespace  group  temp_grp;

     把某个临时表空间移出组:

     alter tablespace temp2 tablespace  group  '';

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn