码迷,mamicode.com
首页 > 数据库 > 详细

oracle 临时表空间

时间:2016-02-01 13:47:28      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

环境:

OS:

Oracle Linux Server release 5.7

 

DB:

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

 

 

1、查看临时表空间信息:

select tablespace_name,file_name,bytes/1024/1024 file_size,autoextensible from dba_temp_files;

 

TABLESPACE FILE_NAME FILE_SIZE AUTOEXTEN
---------- ---------------------------------------- ---------- ---------
TEMP /u01/oracle/oradata/yoon/temp01.dbf 29 YES

 

2、添加数据文件,tempfile,not datafile

SQL> alter tablespace temp add tempfile ‘/u01/oracle/oradata/yoon/temp02.dbf‘ size 100m;

 

3、创建临时表空间

SQL> create temporary tablespace temp2 tempfile ‘/u01/oracle/oradata/yoon/temp2_01.dbf‘ size 100m autoextend on next 50m;

 

4、删除临时表空间

SQL> drop tablespace temp2 including contents and datafiles;

 

5、修改默认临时表空间

SQL> alter database default temporary tablespace temp2;

 

6、修改用户默认临时表空间

SQL> alter user scott temporary tablespace temp;

oracle 临时表空间

标签:

原文地址:http://www.cnblogs.com/hankyoon/p/5174557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!