퍼온곳 : http://blog.naver.com/idtong/130040408722 클러스터링 사이즈 결정 클러스터링 사이즈 = ∑(table 평균로우 길이 * 클러스터 키당 평균 로우수)*1.1 1) table 평균로우 길이 산정 . 테이블의 통계정보 생성 analyze table [table_name] compute statistics; ex) analyze table TB_MEMBER compute statistics . tavle 평균 길이 조회 ex) select avg_row_len from user_tables where table_name='TB_MEMBER'; 2). 클러스터 키당 평균 로우수 구하기 select avg(count(*)) from TB_MEMBER group by reg..