oracle数据库删除 表空间还有吗
发布网友
发布时间:2022-05-05 23:56
我来回答
共2个回答
热心网友
时间:2022-05-06 01:26
--删除空的表空间,但是不包含物理文件
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;