실수로 dbf 파일을 rm -rf 으로 먼저 삭제하고 drop tablespace 하면 셧다운이 안된다.

1. 데이터베이스 셧다운 : shutdown immediate;
2. 데이터베이스 마운트 : startup mount;
3. 테이블스페이스 오프라인 드롭을 하자
    alter database datafile '[file path]' offline drop;
4. 데이터베이스 오픈 : alter database open;

이렇게 한 다음에 논리적으로 테이블스페이스를 삭제하면 된다.
drop tablespace [테이블스페이스명] including contents and datafiles;



http://mo0721.tistory.com/81 에서 퍼옴...
Posted by 배터리