码迷,mamicode.com
首页 > 其他好文 > 详细

临时表空间组创建及删除

时间:2018-10-30 18:47:20      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:content   空间   alter   ted   temporary   altered   alt   oracl   create   

一、临时表空间组创建

1、

SQL> alter tablespace temp tablespace group temgrp;

Tablespace altered.

2、

SQL> create temporary tablespace temp2 tempfile ‘/u01/app/oracle/temp02.dbf‘ size 10M tablespace group temgrp;

Tablespace created.

3、

SQL> alter database default temporary tablespace temgrp;

Database altered.

二、临时表空间组删除

1、

SQL> alter tablespace temp tablespace group ‘‘;

Tablespace altered.

2、

SQL> alter database default temporary tablespace temp;

Database altered.

3、

SQL> drop tablespace temp2 including contents and datafiles;

Tablespace dropped.

 

临时表空间组创建及删除

标签:content   空间   alter   ted   temporary   altered   alt   oracl   create   

原文地址:https://www.cnblogs.com/orcl-2018/p/9878518.html

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