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

删除表空间及数据文件

时间:2017-04-01 16:59:04      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:file   关联   删除表   pac   ace   表空间   tables   ble   约束   

--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;

删除表空间及数据文件

标签:file   关联   删除表   pac   ace   表空间   tables   ble   约束   

原文地址:http://www.cnblogs.com/wcwen1990/p/6656561.html

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