删除表空间及数据文件

Posted ChavinKing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除表空间及数据文件相关的知识,希望对你有一定的参考价值。

--删除空的表空间,但是不包含物理文件
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;

以上是关于删除表空间及数据文件的主要内容,如果未能解决你的问题,请参考以下文章

怎么删除用户,表空间,数据文件

Oracle 11G删除数据库表空间的文件

oracle怎样恢复删除的数据文件

碎片计算方法及整理过程

表空间及组成表空间的物理文件

oracle只删除表如何再删除文件还在运行