操作步骤: 1. 先建立一个中转临时表空间2. 删除原临时表空间3. 然后再重建回来
操作命令:建立一个中转临时表空间create temporary tablespace temp2tempfile ‘/u01/oradata/orcl/temp02.dbf’ size 512Mreuse autoextend on next 100M maxsize 2048M;alter database default temporary tablespace temp2;drop tablespace temp including contents and datafiles;重新建立一个新的临时表空间create temporary tablespace temptempfile ‘/u01/oradata/orcl/temp01.dbf’ size 512Mreuse autoextend on next 100M maxsize 1024M;alter database default temporary tablespace temp;drop tablespace temp2 including contents and datafiles;Oracle 百万行数据查询优化Oracle分区表 (Partition Table) 的创建及管理相关资讯 Oracle教程
- Oracle中纯数字的varchar2类型和 (07/29/2015 07:20:43)
- Oracle教程:Oracle中查看DBLink密 (07/29/2015 07:16:55)
- [Oracle] SQL*Loader 详细使用教程 (08/11/2013 21:30:36)
| - Oracle教程:Oracle中kill死锁进程 (07/29/2015 07:18:28)
- Oracle教程:ORA-25153 临时表空间 (07/29/2015 07:13:37)
- Oracle教程之管理安全和资源 (04/08/2013 11:39:32)
|
本文评论 查看全部评论 (0)