2015. 9. 30. 17:30 오라클
drop tablespace 가 오래걸릴때
Drop Tablespace Command Slow or Hanging (문서 ID 2060324.1)
10.2.0.5 이후
증상 : 파티션 테이블이 많이 포함되어 있어 Tablespace drop 시 시간이 오래 걸릴때
원인 : drop tablespace 명령을 내릴떄 drop table 명령이 반복적으로 수행되는데 인덱스파티션/서버파티션에 대한 정
보를 로드하느라 과도한 "optimizer stats update retry" wait event가 발생하게 됨.
drop tablespace <tablespace_name> including contents and datafiles ;
Hang 걸림...
해결책 :
1. drop 전에 통계정보가 생성되어 있는지 확인하거나
2. alter session set events '14534 trace name context forever, level 1';
<drop tablespace.....>
(해당 이벤트를 걸면 파티션을 위한 라이브러리 캐쉬 데이타를 로딩할때 익스텐트 맵 읽는 것을 생략함으로 불필요한 이벤트가 발생하지 않게 된다)