본문 바로가기

Oracle

모든 테이블, 모든 인덱스 Analyze

SELECT 'analyze table ' || table_name || ' estimate statistics;' 
  FROM user_tables

;

SELECT 'analyze index ' || index_name || ' estimate statistics;' 
  FROM user_indexes

;

위 쿼리 실행 후 나온 결과를 복사하여 전체실행한다.