일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 마이플랫폼
- 오라클
- DB
- JavaScript
- miplatform
- 데이터베이스
- 엑셀
- java
- 함수
- 회계
- 톰캣
- 튜닝
- error
- 에러
- 한글
- Book
- Excel
- 성능
- 태그를 입력해 주세요.
- JEUS
- oracle
- Tomcat
- 도서
- MIP
- 기타소득
- 오류
- 자바
- 이클립스
- Eclipse
- Report Designer
Archives
- Today
- Total
어느 가을날의 전환점
ORACLE|오라클 Table/Index Analyze 확인 및 실행방법 본문
오라클을 통해 작업할 시 insert시점에서 정상적으로 인덱싱이 되지 않는 경우가 발생한다.
특히 결합인덱스를 많이 사용하고 있는 경우 발생될 확률이 높다.
이런경우 오라클의 Analyzed를 통해서 해결이 가능하고 어느정도의 실행속도를 향상 시킬 수있다.
(실제 오라클사에서도 3개월에 한번씩은 Analyze를 실행하라 권고하고 있다.)
[Analyzed 확인 방법]
select table_name, num_rows, to_char(last_analyzed, 'yyyymmdd') from user_tablesselect index_name, num_rows, to_char(last_analyzed, 'yyyymmdd') from user_indexesex) select table_name, num_rows, to_char(last_analyzed, 'yyyymmdd') from user_tables;TABLE_NAME NUM_ROWS LAST_ANALYZED
------------------------------ ---------- --------
ABS_TYPE 38 20040101ANNIVERS 183 20040101
APPRFLDRHISTORY 570 20040101
APPRFOLDER 16885 20040101
APPRFOLDER_ERR 3670 20040101
APPRFORM 359 20040101
.
.
.
USR_INFO_ADMIN 0 20040101
VAR_DEPT_INFO 0 20040101
VIEW_TYPE 0 20040101
WASTEBOX 0 20040101
ZIP_CODE 44195 20040101252 rows selected.※ 참고 : desc user_tables 에서 보통 num_rows 로도 확인 가능[특정 Table만 Analyze 하는 방법]analyze table document compute statisticsex) DOCUMENT Table 만 Analyzeanalyze index xpkdocbox compute statisticsex) XPKDOCBOX Index 만 Analyze[전체 Table Analyze 하는 간단한 방법]1. vi analyze_all.sql
select 'analyze table || table_name || estimate statistics;' from user_tables2. @analyze_all.sql3. set heading off
set echo off
set feedback off
set pagesize 300 (line 이 300 미만일 경우)
spool analyze_table.sql
/
spool off4. vi analyze_table.sql
필요없는 Line 제거 및 정리5. @analyze_table.sql
[전체 Index Analyze 하는 간단한 방법]1. vi analyze_all.sql
select 'analyze index || index_name || estimate statistics;' from user_indexes2. @analyze_all.sql3. set heading off
set echo off
set feedback off
set pagesize 300 (line 이 300 미만일 경우)
spool analyze_index.sql
/
spool off4. vi analyze_index.sql
필요없는 Line 제거 및 정리5. @analyze_index.sql
'Database > Oracle' 카테고리의 다른 글
ORACLE|조회 쿼리(Query)에서 와일드카드(Wildcards) 문자열로 사용하기 (0) | 2011.06.07 |
---|---|
ORACLE|Decode 함수 활용 Tips (0) | 2011.04.10 |
ORACLE|실행계획(Explain Plan) 보는 방법 (0) | 2010.12.24 |
ORACLE|Optimizer Mode (옵티마이저 모드) (0) | 2010.12.14 |
ORACLE|오라클 시스템 뷰 (System Views) USER_... (1) | 2010.12.02 |
Comments