清空 表空间

清空表空间:
drop tablespace SIRM INCLUDING CONTENTS

清空表空间并物理删除文件
drop tablespace SIRM INCLUDING CONTENTS and datafiles;


报错:有域索引或次级对象
下列可以查看 那些 影响了文件删除
查看哪些objects存储在EXAMPLE表空间,将其drop或者move,然后再drop tablespace
select owner,segment_name, segment_type from dba_segments where tablespace_name = 'EXAMPLE'; 

select distinct owner,segment_name, segment_type from dba_extents where tablespace_name='EXAMPLE'; 



2011-11-2 10:22:35
终于可以了

-- 先删除用户(如果要删除的表空间上有多个用户有相关数据,则要将多个用户都删除)
drop user user_name;

-- 再删除表空间:
drop tablespace tablespace_name including contents and datafiles;


然后物理删除表空间 就可以释放空间了

你可能感兴趣的:(java,contents,datafiles)