时间:2021-07-01 10:21:17 帮助过:39人阅读
将临时表空间temp2加入到临时表空间组temp_grp中:
alter tablespace temp2 tablespace group temp_grp;
将临时表空间temp2从临时表空间组temp_grp中移除:
alter tablespace temp2 tablespace group ‘‘ ; --组名置空
给temp表空间添加一个临时文件temp3aa.dbf :
alter tablespace temp2 add tempfile ‘D:\app\Administrator\oradata\orcl\temp3aa.dbf‘ size 10m autoextend on ;
修改系统默认的临时表空间:
①将默认临时表空间改成临时表空间组 temp_grp (可包含多个临时表空间):
alter database default temporary tablespace temp_grp;
②将默认临时表空间改成临时表空间temp2:
alter database default temporary tablespace temp_grp;
oracle11g中的临时表空间
标签:大小 mini alter 排序 覆盖 emp_table ble hash 修改