Chinaunix

标题: 删除example表空间问题 [打印本页]

作者: Tsinghuazhl    时间: 2007-06-19 17:41
标题: 删除example表空间问题
我想删除example表空间,但是提示我 ORA-29857:表空间存在域索引和/次级对象.
请问这是什么原因,怎么样做才能删除他
作者: numenhuang    时间: 2007-06-19 17:49
select owner,segment_name, segment_type from dba_segments
where tablespace_name = 'EXAMPLE';

select distinct owner,segment_name, segment_type from dba_extents where tab
lespace_name='EXAMPLE'

查看哪些objects存储在EXAMPLE表空间,将其drop或者move,然后再drop tablespace
作者: 大大乎乎    时间: 2007-06-20 11:47
先用select owner,segment_name, segment_type from dba_segments
where tablespace_name = 'EXAMPLE';确认该表空间上的对象都已经不需要,然后用
drop tablespace tablespace_name including contents; 命令删除表空间




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2