--创建一个大一点的TEMP表空间
create temporary tablespace temp1
tempfile '/oracledatafile/temp01.dbf' SIZE 100m autoextend on next 100m maxsize 5000m; 
--切换默认TEMP表空间
alter database default temporary tablespace temp1;
--删掉以前的TEMP表空间
drop tablespace temp including contents and datafiles;
	
posted on 2010-04-30 11:05 
Jcat 阅读(301) 
评论(0)  编辑  收藏  所属分类: 
Database