1.建立本地管理临时表空间
当建立本地管理临时表空间时,使用uniform选项可以指定区尺寸。注意,当建立临时表空间时,不能指定autoallocate选项。
例子:
create temporary tablespace temp01 tempfile 'd:\orcl\temp01.dbf' size 5m uniform size 256k;
2.建立大文件临时表空间
从oracle10g开始,允许使用create bigfile temporary tablespace 命令建立大文件临时表空间。
例子:
create bigfile temporary tablespace temp02 tempfile 'd:\orcl\temp02.dbf' size 5g;
3.使用临时表空间组
临时表空间组是多个临时表空间的集合,它使得一个数据库用户可以使用多个临时表空间。
注意:临时表空间组不能和表空间同名,并且设置默认临时表空间或用户临时表空间时,可以指定临时表空间组。
例子:
/*建立临时表空间temp03并分配到临时表空间组group1*/ create temporary tablespace temp03 tempfile 'd:\orcl\temp03.dbf' size 2m tablespace group group1; /*分配临时表空间temp temp01,temp02到临时文件group2*/ alter tablespace temp tablespace group group2; alter tablespace temp01 tablespace group group2; alter tablespace temp02 tablespace group group2;