티스토리 뷰

반응형

root 권한이 있는 계정으로 접속 후 아래와 같이 순서대로 쿼리 실행하고 drop 하면 되네요...

1. null 인 테이블의 행수 찾기

select a.object_id from dba_objects a,

(select obj_id, row_cnt from sys._dd_tbl ) b  

where a.object_id= b.obj_id 

and b.row_cnt is null;

 

2. 업데이트

update sys._dd_tbl set row_cnt=0

where obj_id in (

select a.object_id from dba_objects a,

(select obj_id, row_cnt from sys._dd_tbl ) b  

where a.object_id= b.obj_id 

and b.row_cnt is null);

 

3. commit

 

4. drop table 한다.

반응형
댓글