欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

oracle11G的临时表空间

程序员文章站 2024-02-07 23:02:16
...

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