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

oracle11G的临时表空间

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 15:32:09
Original
1329 people have browsed it

创建临时表空间(不属于组): 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  '';

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template