728x90
gather_table_stats
프로시저 호출을 통해서 테이블, 컬럼, 인덱스 통계 정보를 수집할 수 있습니다.
-- CTAS로 테이블 생성
select * from scott.emp;
create table t_emp
as
select d.no, e.*
from scott.emp e
, (select rownum no from dual connect by level <= 1000) d;
-- 인덱스 생성
create index t_emp_index_x01 on t_emp(deptno, no);
create index t_emp_index_x02 on t_emp(deptno, job, no);
-- t_emp 테이블에 통계 정보를 수집하는 명령어
exec dbms_stats.gather_table_stats(user, 't_emp');
참고자료
'Database' 카테고리의 다른 글
MySQL 그룹 함수 GROUP_CONCAT (0) | 2020.02.05 |
---|---|
Oracle 순위를 반환하는 함수 (RANK, DENSE_RANK, ROW_NUMBER) (0) | 2020.01.23 |
JDBC 드라이버에서 MySQL 데이터베이스 문자 인코딩 설정 (0) | 2019.06.23 |
MySQL "Cannot get geometry object from data you send to the GEOMETRY field" 에러 해결방법 (0) | 2019.05.13 |
H2 대소문자 구분 없이 Like 검색 (case insensitive like query) (0) | 2019.04.29 |
댓글