상세 컨텐츠

본문 제목

index 를 다른 tablespace 로 옮기는 쿼리

Oracle/DB

by 야솔아빠 2013. 7. 31. 17:13

본문

반응형

Oracle DB

A tablespace 에 존재하는 index 를 B tablespace 로 옮길때 유용한 쿼리


select 'alter index '||owner||'.'||index_name||' rebuild  tablespace BIS_IDX_01;'

from dba_indexes

where 1=1

and owner in ('BIS_ODS')

and TABLESPACE_NAME <> 'BIS_IDX_01'

;


반응형

관련글 더보기

댓글 영역