ORA-01549 问题解决

当删除表空间报错:ORA01549

JSSWEB> drop tablespace stream_tbs;
drop tablespace stream_tbs
*
ERROR at line 1:
ORA- 01549: tablespace not empty, use INCLUDING CONTENTS option


JSSWEB> drop tablespace manualsegments including contents and datafiles;
drop tablespace manualsegments including contents and datafiles
*
ERROR at line 1:
ORA- 00959: tablespace 'MANUALSEGMENTS' does not exist


--------解决办法------
JSSWEB> drop tablespace stream_tbs including contents and datafiles;

Tablespace dropped.

你可能感兴趣的:(Oracle故障排除)